.
This commit is contained in:
+32
-8
@@ -12,23 +12,47 @@ urlpatterns = [
|
||||
path("case/", views.CaseView.as_view(), name="case_view"),
|
||||
path("condition/", views.ConditionView.as_view(), name="condition_view"),
|
||||
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>/delete",
|
||||
views.ConditionDelete.as_view(),
|
||||
name="condition_delete",
|
||||
),
|
||||
path(
|
||||
"condition/<int:pk>/update",
|
||||
views.ConditionUpdate.as_view(),
|
||||
name="condition_update",
|
||||
),
|
||||
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>/delete", views.FindingDelete.as_view(), name="finding_delete"
|
||||
),
|
||||
path(
|
||||
"finding/<int:pk>/update", views.FindingUpdate.as_view(), name="finding_update"
|
||||
),
|
||||
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>/delete",
|
||||
views.StructureDelete.as_view(),
|
||||
name="structure_delete",
|
||||
),
|
||||
path(
|
||||
"structure/<int:pk>/update",
|
||||
views.StructureUpdate.as_view(),
|
||||
name="structure_update",
|
||||
),
|
||||
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"),
|
||||
path("series/<int:pk>/<int:finding_pk>", views.series_detail, name="series_edit_finding"),
|
||||
path(
|
||||
"series/<int:pk>/<int:finding_pk>",
|
||||
views.series_detail,
|
||||
name="series_edit_finding",
|
||||
),
|
||||
path(
|
||||
"series/<int:pk>/order_dicom",
|
||||
views.series_order_dicom,
|
||||
@@ -66,7 +90,7 @@ urlpatterns = [
|
||||
# path("verified/", views.verified, name="verified"),
|
||||
# path("all_questions/", views.all_questions, name="all_questions"),
|
||||
path("case/<int:pk>/scrap", views.atlas_scrap, name="case_scrap"),
|
||||
path("case/<int:pk>/delete", views.AtlasDelete.as_view(), name="case_delete"),
|
||||
path("case/<int:pk>/delete", views.CaseDelete.as_view(), name="case_delete"),
|
||||
path("case/create/", views.AtlasCreate.as_view(), name="create"),
|
||||
path("series/create", views.SeriesCreate.as_view(), name="series_create"),
|
||||
path(
|
||||
|
||||
Reference in New Issue
Block a user