This commit is contained in:
Ross
2022-03-29 22:38:13 +01:00
parent 7704132897
commit ef6cfe12e6
3 changed files with 6 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ urlpatterns = [
path("author/", views.author_list, name="author_list"),
path("case/", views.CaseView.as_view(), name="case_view"),
path("collection/", views.collection_index_view, name="collection_index_view"),
path("collection/delete", views.CaseCollectionDelete.as_view, name="collection_delete"),
path("collection/create", views.CaseCollectionCreate.as_view(), name="collection_create"),
path("collection/<int:pk>/update", views.CaseCollectionUpdate.as_view(), name="collection_update"),
path("collection/<int:pk>", views.collection_detail_view, name="collection_detail_view"),