more bootstrap nav convresion
This commit is contained in:
+4
-10
@@ -6,11 +6,10 @@ from . import views
|
||||
app_name = "longs"
|
||||
|
||||
urlpatterns = [
|
||||
# path('', views.question_list, name='question_list'),
|
||||
path("author/<int:pk>/", views.author_detail, name="author_detail"),
|
||||
path("author/", views.author_list, name="author_list"),
|
||||
path("question/", views.LongView.as_view(), name="long_view"),
|
||||
path("series/", views.LongSeriesView.as_view(), name="long_series_view"),
|
||||
path("question/", views.LongView.as_view(), name="question_view"),
|
||||
path("series/", views.LongSeriesView.as_view(), name="series_view"),
|
||||
path("series/<int:pk>", views.series_detail, name="series_detail"),
|
||||
path(
|
||||
"series/<int:pk>/order_dicom",
|
||||
@@ -100,18 +99,13 @@ urlpatterns = [
|
||||
path("exam/<int:exam_id>/clone", views.ExamClone.as_view(), name="exam_clone"),
|
||||
path("exam/<int:pk>/update", views.ExamUpdate.as_view(), name="exam_update"),
|
||||
path("exam/<int:pk>/delete", views.ExamDelete.as_view(), name="exam_delete"),
|
||||
path("create/", views.LongCreate.as_view(), name="long_create"),
|
||||
path("create/series", views.LongSeriesCreate.as_view(), name="long_series_create"),
|
||||
path("create/", views.LongCreate.as_view(), name="question_create"),
|
||||
path("create/series", views.LongSeriesCreate.as_view(), name="series_create"),
|
||||
path(
|
||||
"create/series/<int:pk>",
|
||||
views.LongSeriesCreate.as_view(),
|
||||
name="long_series_id_create",
|
||||
),
|
||||
path(
|
||||
"create/defaults",
|
||||
views.LongCreationDefaultView.as_view(),
|
||||
name="long_create_defaults",
|
||||
),
|
||||
# path("region/create/", views.create_region, name="create_region"),
|
||||
# path("region/ajax/get_region_id", views.get_region_id, name="get_region_id"),
|
||||
# path("abnormality/create/", views.create_abnormality, name="create_abnormality"),
|
||||
|
||||
Reference in New Issue
Block a user