improve collection overview page

This commit is contained in:
Ross
2025-07-21 12:52:45 +01:00
parent 6a919ffc53
commit ad4be1e9a6
6 changed files with 115 additions and 3 deletions
+10
View File
@@ -81,6 +81,16 @@ urlpatterns = [
name="collection_take_start",
),
path("collection/<int:pk>/authors", views.CaseCollectionAuthorUpdate.as_view(), name="collection_authors"),
path(
"collection/<int:pk>/toggle_results_published",
views.GenericExamViews.exam_toggle_results_published_htmx,
name="exam_toggle_results_published",
),
path(
"collection/<int:pk>/toggle_active",
views.GenericExamViews.exam_toggle_active_htmx,
name="exam_toggle_active",
),
path(
"collection/<int:exam_id>/cids",
views.GenericExamViews.exam_cids,