Refactor code structure for improved readability and maintainability

This commit is contained in:
Ross
2026-03-16 14:09:29 +00:00
parent b35057d059
commit 70602e6f71
2 changed files with 170 additions and 165 deletions
+5
View File
@@ -106,6 +106,11 @@ urlpatterns = [
views.GenericExamViews.exam_cids, views.GenericExamViews.exam_cids,
name="exam_cids", name="exam_cids",
), ),
path(
"collection/<int:exam_id>/cids/cid_list",
views.GenericExamViews.exam_cids_cid_list,
name="exam_cids_cid_list",
),
path( path(
"collection/<int:exam_id>/history", "collection/<int:exam_id>/history",
views.collection_history, views.collection_history,
+165 -165
View File
File diff suppressed because one or more lines are too long