allow viewing of findings in case context

This commit is contained in:
Ross
2025-05-12 23:25:41 +01:00
parent 9f5fc09e23
commit 77ee83cb08
4 changed files with 139 additions and 0 deletions
+1
View File
@@ -297,6 +297,7 @@ urlpatterns = [
),
path("condition/create", views.ConditionCreate.as_view(), name="condition_create"),
path("finding/", views.FindingView.as_view(), name="finding_view"),
path('series_finding/<int:finding_id>/details/', views.series_finding_details, name='series_finding_details'),
path("finding/<int:pk>", views.finding_detail, name="finding_detail"),
path(
"finding/<int:pk>/delete", views.FindingDelete.as_view(), name="finding_delete"