.
This commit is contained in:
+5
-2
@@ -11,13 +11,14 @@ 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"),
|
||||
# path("verified/<int:pk>/", views.verified_detail, name="verified_detail"),
|
||||
path(
|
||||
"question/<int:pk>/", views.GenericViews.question_detail, name="question_detail"
|
||||
),
|
||||
),
|
||||
path("question/<int:pk>/json", views.question_json, name="question_json"),
|
||||
path(
|
||||
"question/<int:pk>/json/unbased",
|
||||
@@ -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