add some tests and views

This commit is contained in:
Ross
2024-01-29 10:52:02 +00:00
parent 04dcb74e67
commit cfb90be686
11 changed files with 142 additions and 6 deletions
+10
View File
@@ -162,6 +162,16 @@ urlpatterns = [
views.SupervisorDelete.as_view(),
name="supervisor_delete",
),
path(
"exam_collection/",
views.ExamCollectionList.as_view(),
name="exam_collection_list",
),
path(
"exam_collection/<int:pk>/",
views.ExamCollectionDetail.as_view(),
name="exam_collection_detail",
),
]