This commit is contained in:
Ross
2021-02-05 17:12:13 +00:00
parent f1ebc48d9c
commit 1420d74393
9 changed files with 210 additions and 303 deletions
+2
View File
@@ -37,6 +37,7 @@ urlpatterns = [
path("exam/json/<int:pk>/recreate", views.exam_json_recreate, name="exam_json_recreate"),
path("create/", views.LongCreate.as_view(), name="long_create"),
path("create/series", views.LongSeriesCreate.as_view(), name="long_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"),
@@ -61,5 +62,6 @@ urlpatterns = [
views.LongUpdate.as_view(),
name="long_update",
),
path("series/<int:pk>/update", views.LongSeriesUpdate.as_view(), name="long_series_update"),
path("<int:pk>/add_note", views.AddNote.as_view(), name="long_add_note"),
]