continue working on case collections
This commit is contained in:
@@ -14,6 +14,11 @@ urlpatterns = [
|
||||
RedirectView.as_view(pattern_name="atlas:case_create", permanent=False),
|
||||
name="create",
|
||||
),
|
||||
path(
|
||||
"add_self_review/<int:user_exam_id>/<int:case_id>",
|
||||
views.AddSelfReview.as_view(),
|
||||
name="add_self_review",
|
||||
),
|
||||
path("author/<int:pk>/", views.author_detail, name="author_detail"),
|
||||
path("author/", views.author_list, name="author_list"),
|
||||
path("case/", views.CaseView.as_view(), name="case_view"),
|
||||
@@ -23,6 +28,7 @@ urlpatterns = [
|
||||
views.CaseCollectionCreate.as_view(),
|
||||
name="exam_create",
|
||||
),
|
||||
path("collection/<int:exam_id>/clone", views.CollectionClone.as_view(), name="exam_clone"),
|
||||
path(
|
||||
"collection/<int:pk>/delete",
|
||||
views.CaseCollectionDelete.as_view(),
|
||||
|
||||
Reference in New Issue
Block a user