allow adding markers and authors to exams in collections
This commit is contained in:
+3
-1
@@ -236,6 +236,8 @@ urlpatterns = [
|
||||
views.ExamCollectionDelete.as_view(),
|
||||
name="examcollection_delete",
|
||||
),
|
||||
path("collection/<int:collection_id>/add_author", views.exam_collection_add_author, name="exam_collection_add_author"),
|
||||
path("collection/<int:collection_id>/add_marker/<str:exam_type>", views.exam_collection_add_marker, name="exam_collection_add_marker"),
|
||||
path(
|
||||
"share_with_supervisor_toggle/<int:pk>/",
|
||||
views.toggle_share_with_supervisor,
|
||||
@@ -395,7 +397,7 @@ def generic_exam_urls(generic_exam_view: GenericExamViews):
|
||||
name="exam_answers_submit",
|
||||
),
|
||||
path("exam/", generic_exam_view.exam_list, name="exam_list"),
|
||||
path("exam/<int:collection_id>/collection", generic_exam_view.exam_list_collection, name="exam_list_collection"),
|
||||
path("collection/<int:collection_id>/", generic_exam_view.exam_list_collection, name="exam_list_collection"),
|
||||
path("exam/all", generic_exam_view.exam_list_all, name="exam_list_all"),
|
||||
path(
|
||||
"exam/<int:exam_id>/order_questions",
|
||||
|
||||
Reference in New Issue
Block a user