.
This commit is contained in:
+4
-1
@@ -11,6 +11,7 @@ urlpatterns = [
|
||||
path("", views.RapidExamViews.index, name="index"),
|
||||
path("author/<int:pk>/", views.GenericViews.author_detail, name="author_detail"),
|
||||
path("author/", views.GenericViews.author_list, name="author_list"),
|
||||
path("question_viewer", views.question_viewer, name="question_viewer"),
|
||||
path("question/", views.RapidView.as_view(), name="rapid_view"),
|
||||
path("question/hash", views.get_question_by_hash, name="rapid_question_by_hash"),
|
||||
# path("unchecked/", views.unchecked_list, name="unchecked_list"),
|
||||
@@ -51,7 +52,9 @@ urlpatterns = [
|
||||
),
|
||||
path("exam/<int:exam_pk>/<int:sk>/mark", views.mark, name="mark"),
|
||||
path("exam/<int:exam_pk>/<int:sk>/mark/all", views.mark_all, name="mark_all"),
|
||||
path("exam/<int:exam_pk>/<int:sk>/mark/review", views.mark_review, name="mark_review"),
|
||||
path(
|
||||
"exam/<int:exam_pk>/<int:sk>/mark/review", views.mark_review, name="mark_review"
|
||||
),
|
||||
path(
|
||||
"exam/<int:pk>/mark", views.RapidExamViews.mark_overview, name="mark_overview"
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user