Add Procedure model integration: create views, forms, and templates; update URLs and search functionality

This commit is contained in:
Ross
2026-02-16 14:15:28 +00:00
parent 6e3ab7de41
commit 44d23801b2
9 changed files with 138 additions and 9 deletions
+5
View File
@@ -642,7 +642,12 @@ urlpatterns = [
path(
"presentation/<int:pk>", views.presentation_detail, name="presentation_detail"
),
path("procedure/", views.ProcedureView.as_view(), name="procedure_view"),
path("procedure/<int:pk>", views.procedure_detail, name="procedure_detail"),
path("procedure/create", views.ProcedureCreate.as_view(), name="procedure_create"),
path("procedure/<int:pk>/update", views.ProcedureUpdate.as_view(), name="procedure_update"),
path("procedure/<int:pk>/delete", views.ProcedureDelete.as_view(), name="procedure_delete"),
path("presentation/create", views.PresentationCreate.as_view(), name="presentation_create"),
path(
"process/",