This commit is contained in:
Ross
2022-04-01 19:02:03 +01:00
parent d30857bb2c
commit 93f359fca7
4 changed files with 64 additions and 2 deletions
+2
View File
@@ -18,7 +18,9 @@ urlpatterns = [
path("collection/<int:pk>/delete", views.CaseCollectionDelete.as_view(), name="collection_delete"),
path("collection/<int:pk>/update", views.CaseCollectionUpdate.as_view(), name="collection_update"),
path("collection/<int:pk>", views.collection_detail_view, name="collection_detail_view"),
path("collection/<int:pk>/take/<int:cid>/<str:passcode", views.collection_detail_view_take, name="collection_detail_view_take"),
path("collection/<int:pk>/<int:case_number>", views.collection_case_view, name="collection_case_view"),
path("collection/<int:pk>/<int:case_number>/take/<int:cid>/<str:passcode", views.collection_case_view_take, name="collection_case_view_take"),
path("condition/", views.ConditionView.as_view(), name="condition_view"),
path("categories/", views.categories_list, name="categories_list"),
path("condition/<int:pk>", views.condition_detail, name="condition_detail"),