This commit is contained in:
Ross
2021-12-05 19:31:36 +00:00
parent 3707130130
commit 8abc247aa4
3 changed files with 5 additions and 4 deletions
+3 -3
View File
@@ -14,17 +14,17 @@ urlpatterns = [
path("condition/<int:pk>", views.condition_detail, name="condition_detail"),
path("condition/<int:pk>/delete", views.ConditionDelete.as_view(), name="condition_delete"),
path("condition/<int:pk>/update", views.ConditionUpdate.as_view(), name="condition_update"),
path("condition/<int:pk>/create", views.ConditionCreate.as_view(), name="condition_create"),
path("condition/create", views.ConditionCreate.as_view(), name="condition_create"),
path("finding/", views.FindingView.as_view(), name="finding_view"),
path("finding/<int:pk>", views.finding_detail, name="finding_detail"),
path("finding/<int:pk>/delete", views.FindingDelete.as_view(), name="finding_delete"),
path("finding/<int:pk>/update", views.FindingUpdate.as_view(), name="finding_update"),
path("finding/<int:pk>/create", views.FindingCreate.as_view(), name="finding_create"),
path("finding/create", views.FindingCreate.as_view(), name="finding_create"),
path("structure/", views.StructureView.as_view(), name="structure_view"),
path("structure/<int:pk>", views.structure_detail, name="structure_detail"),
path("structure/<int:pk>/delete", views.StructureDelete.as_view(), name="structure_delete"),
path("structure/<int:pk>/update", views.StructureUpdate.as_view(), name="structure_update"),
path("structure/<int:pk>/create", views.StructureCreate.as_view(), name="structure_create"),
path("structure/create", views.StructureCreate.as_view(), name="structure_create"),
path("series/<int:pk>", views.series_detail, name="series_detail"),
path("series/", views.SeriesView.as_view(), name="series_view"),
path("series/<int:pk>", views.series_detail, name="series_detail"),