|
@@ -14,6 +14,7 @@ urlpatterns = [
|
|
|
path('profile_update/', views.profile_update, name='profile_update'),
|
|
path('profile_update/', views.profile_update, name='profile_update'),
|
|
|
path(r'change_password/', views.change_password, name='change_password'),
|
|
path(r'change_password/', views.change_password, name='change_password'),
|
|
|
path('edition/', views.backlog_editor, name='backlog_editor'),
|
|
path('edition/', views.backlog_editor, name='backlog_editor'),
|
|
|
|
|
+ path('sprintend/', views.sprint_end, name='sprint_end'),
|
|
|
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/create/', views.story_create, name='story_create'),
|
|
path('stories/create/', views.story_create, name='story_create'),
|
|
@@ -21,6 +22,7 @@ urlpatterns = [
|
|
|
path('stories/edit/<int:story_id>/', views.story_edit, name='story_edit'),
|
|
path('stories/edit/<int:story_id>/', views.story_edit, name='story_edit'),
|
|
|
path('stories/delete/<int:story_id>/', views.story_delete, name='story_delete'),
|
|
path('stories/delete/<int:story_id>/', views.story_delete, name='story_delete'),
|
|
|
path('stories/close/<int:story_id>/', views.story_close, name='story_close'),
|
|
path('stories/close/<int:story_id>/', views.story_close, name='story_close'),
|
|
|
|
|
+ path('stories/axclose/<int:story_id>/', views.story_close_ajax, name='story_close_ajax'),
|
|
|
path('stories/reopen/<int:story_id>/', views.story_reopen, name='story_reopen'),
|
|
path('stories/reopen/<int:story_id>/', views.story_reopen, name='story_reopen'),
|
|
|
path('epics/<int:epic_id>', views.epic_details, name='epic_details'),
|
|
path('epics/<int:epic_id>', views.epic_details, name='epic_details'),
|
|
|
path('epics/create/', views.epic_create, name='epic_create'),
|
|
path('epics/create/', views.epic_create, name='epic_create'),
|