continue building examcollections
This commit is contained in:
+24
-4
@@ -163,14 +163,34 @@ urlpatterns = [
|
||||
name="supervisor_delete",
|
||||
),
|
||||
path(
|
||||
"exam_collection/",
|
||||
"examcollection/",
|
||||
views.ExamCollectionList.as_view(),
|
||||
name="exam_collection_list",
|
||||
name="examcollection_list",
|
||||
),
|
||||
path(
|
||||
"exam_collection/<int:pk>/",
|
||||
"examcollection/<int:pk>/",
|
||||
views.ExamCollectionDetail.as_view(),
|
||||
name="exam_collection_detail",
|
||||
name="examcollection_detail",
|
||||
),
|
||||
path(
|
||||
"examcollection/<int:pk>/edit",
|
||||
views.ExamCollectionEdit.as_view(),
|
||||
name="examcollection_edit",
|
||||
),
|
||||
path(
|
||||
"examcollection/create",
|
||||
views.ExamCollectionCreate.as_view(),
|
||||
name="examcollection_create",
|
||||
),
|
||||
path(
|
||||
"examcollection/<int:pk>/clone",
|
||||
views.ExamCollectionClone.as_view(),
|
||||
name="examcollection_clone",
|
||||
),
|
||||
path(
|
||||
"examcollection/<int:pk>/delete",
|
||||
views.ExamCollectionDelete.as_view(),
|
||||
name="examcollection_delete",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user