|
@@ -22,8 +22,9 @@ 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('stories/axclose/<int:story_id>/', views.story_close_ajax, name='story_close_ajax'),
|
|
|
|
|
+ path('stories/axreaffect/<int:story_id>/', views.story_reaffect_ajax, name='story_reaffect_ajax'),
|
|
|
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'),
|
|
|
path('epics/edit/<int:epic_id>/', views.epic_edit, name='epic_edit'),
|
|
path('epics/edit/<int:epic_id>/', views.epic_edit, name='epic_edit'),
|
|
@@ -35,6 +36,7 @@ urlpatterns = [
|
|
|
path('reports/', views.reports, name='reports'),
|
|
path('reports/', views.reports, name='reports'),
|
|
|
path('reports/sprints/', views.report_sprints, name='report_sprints'),
|
|
path('reports/sprints/', views.report_sprints, name='report_sprints'),
|
|
|
path('reports/projects/', views.report_projects, name='report_projects'),
|
|
path('reports/projects/', views.report_projects, name='report_projects'),
|
|
|
|
|
+ path('reports/activity/', views.report_activity, name='report_activity'),
|
|
|
path('comment-post/<obj_uuid>/', views.comment_post, name='comment_post'),
|
|
path('comment-post/<obj_uuid>/', views.comment_post, name='comment_post'),
|
|
|
path('comment-edit/<int:comment_id>/', views.comment_edit, name='comment_edit'),
|
|
path('comment-edit/<int:comment_id>/', views.comment_edit, name='comment_edit'),
|
|
|
path('comment-del/<int:comment_id>/', views.comment_del, name='comment_del'),
|
|
path('comment-del/<int:comment_id>/', views.comment_del, name='comment_del'),
|