Update exam-related URL patterns to use 'collection' prefix and add bulk edit routes
This commit is contained in:
+12
-2
@@ -182,15 +182,25 @@ urlpatterns = [
|
||||
),
|
||||
#path("collection/<int:pk>/<int:sk>/test", views.test_form, name="test_form"),
|
||||
path(
|
||||
"exam/<int:exam_id>/cids/edit",
|
||||
"collection/<int:exam_id>/cids/edit",
|
||||
views.GenericExamViews.exam_cids_edit,
|
||||
name="exam_cids_edit",
|
||||
),
|
||||
path(
|
||||
"exam/<int:exam_id>/users/edit",
|
||||
"collection/<int:exam_id>/users/edit",
|
||||
views.GenericExamViews.exam_users_edit,
|
||||
name="exam_users_edit",
|
||||
),
|
||||
path(
|
||||
"collection/<int:exam_id>/cid_bulk_edit",
|
||||
views.GenericExamViews.exam_cid_bulk_edit,
|
||||
name="exam_cid_bulk_edit",
|
||||
),
|
||||
path(
|
||||
"collection/<int:exam_id>/user_bulk_edit",
|
||||
views.GenericExamViews.exam_user_bulk_edit,
|
||||
name="exam_user_bulk_edit",
|
||||
),
|
||||
path("exam/<int:pk>/groups", views.ExamGroupsUpdate.as_view(), name="exam_groups_edit"),
|
||||
path(
|
||||
"collection/<int:exam_id>/case/<int:case_number>/details",
|
||||
|
||||
Reference in New Issue
Block a user