From b3caf8d35736595c862587b9b9baae14e933af60 Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 7 Dec 2021 22:10:44 +0000 Subject: [PATCH] . --- rapids/urls.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rapids/urls.py b/rapids/urls.py index 5b5bb196..e649027e 100755 --- a/rapids/urls.py +++ b/rapids/urls.py @@ -11,13 +11,14 @@ urlpatterns = [ path("", views.RapidExamViews.index, name="index"), path("author//", 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//", views.verified_detail, name="verified_detail"), path( "question//", views.GenericViews.question_detail, name="question_detail" - ), + ), path("question//json", views.question_json, name="question_json"), path( "question//json/unbased", @@ -51,7 +52,9 @@ urlpatterns = [ ), path("exam///mark", views.mark, name="mark"), path("exam///mark/all", views.mark_all, name="mark_all"), - path("exam///mark/review", views.mark_review, name="mark_review"), + path( + "exam///mark/review", views.mark_review, name="mark_review" + ), path( "exam//mark", views.RapidExamViews.mark_overview, name="mark_overview" ),