Add case collection update functionality with form handling and template (move from CaseCollection form)

This commit is contained in:
Ross
2025-08-04 12:21:37 +01:00
parent c33e8c0240
commit 0af6b25349
6 changed files with 161 additions and 17 deletions
+5
View File
@@ -101,6 +101,11 @@ urlpatterns = [
views.collection_history,
name="collection_history",
),
path(
"collection/<int:pk>/cases/update",
views.CollectionCaseUpdate.as_view(),
name="collection_case_update",
),
path(
"collection/add_cases",
views.add_cases_to_collection,