From 3e936e494a3193aa47fdee96affb20ca5a78012b Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 13 Apr 2026 09:38:41 +0100 Subject: [PATCH] Update exam-related URL patterns to use 'collection' prefix and add bulk edit routes --- atlas/urls.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/atlas/urls.py b/atlas/urls.py index a825ba1d..d7b96b01 100755 --- a/atlas/urls.py +++ b/atlas/urls.py @@ -182,15 +182,25 @@ urlpatterns = [ ), #path("collection///test", views.test_form, name="test_form"), path( - "exam//cids/edit", + "collection//cids/edit", views.GenericExamViews.exam_cids_edit, name="exam_cids_edit", ), path( - "exam//users/edit", + "collection//users/edit", views.GenericExamViews.exam_users_edit, name="exam_users_edit", ), + path( + "collection//cid_bulk_edit", + views.GenericExamViews.exam_cid_bulk_edit, + name="exam_cid_bulk_edit", + ), + path( + "collection//user_bulk_edit", + views.GenericExamViews.exam_user_bulk_edit, + name="exam_user_bulk_edit", + ), path("exam//groups", views.ExamGroupsUpdate.as_view(), name="exam_groups_edit"), path( "collection//case//details",