|
@@ -22,6 +22,9 @@ urlpatterns = [
|
|
|
path('sprintnew/', views.sprint_new, name='sprint_new'),
|
|
path('sprintnew/', views.sprint_new, name='sprint_new'),
|
|
|
path('stories/', views.story_index, name='story_index'),
|
|
path('stories/', views.story_index, name='story_index'),
|
|
|
path('stories/<int:story_id>', views.story_details, name='story_details'),
|
|
path('stories/<int:story_id>', views.story_details, name='story_details'),
|
|
|
|
|
+ path('stories/cur/', views.story_index_cur, name='story_index_cur'),
|
|
|
|
|
+ path('stories/prev/', views.story_index_prev, name='story_index_prev'),
|
|
|
|
|
+ path('stories/next/', views.story_index_next, name='story_index_next'),
|
|
|
path('stories/create/', views.story_create, name='story_create'),
|
|
path('stories/create/', views.story_create, name='story_create'),
|
|
|
path('stories/create/<int:epic_id>/', views.story_create, name='story_create'),
|
|
path('stories/create/<int:epic_id>/', views.story_create, name='story_create'),
|
|
|
path('stories/edit/<int:story_id>/', views.story_edit, name='story_edit'),
|
|
path('stories/edit/<int:story_id>/', views.story_edit, name='story_edit'),
|