summaryrefslogtreecommitdiff
path: root/yaksh/urls.py
diff options
context:
space:
mode:
authoradityacp2020-09-09 17:07:21 +0530
committeradityacp2020-09-09 17:07:21 +0530
commit28f9fc3fa8b6ad7866c7ef72f13883af7d6ab7e7 (patch)
tree3b6b3e1ee7c3181edf9edbe6d43f7f6f2000cdde /yaksh/urls.py
parent196e5df3930d4c3f18dfd7e33c9821ca2f74a51e (diff)
downloadonline_test-28f9fc3fa8b6ad7866c7ef72f13883af7d6ab7e7.tar.gz
online_test-28f9fc3fa8b6ad7866c7ef72f13883af7d6ab7e7.tar.bz2
online_test-28f9fc3fa8b6ad7866c7ef72f13883af7d6ab7e7.zip
Show the toc quiz on the student dashboard
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r--yaksh/urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py
index e4f81e1..2b9a04f 100644
--- a/yaksh/urls.py
+++ b/yaksh/urls.py
@@ -259,4 +259,8 @@ urlpatterns = [
name='edit_marker_quiz'),
path('manage/remove/lesson/toc/<int:course_id>/<int:toc_id>',
views.delete_toc, name='delete_toc'),
+ path('get/marker/quiz/<int:course_id>/<int:toc_id>', views.get_marker_quiz,
+ name='get_marker_quiz'),
+ path('submit/marker/quiz/<int:course_id>/<int:toc_id>',
+ views.submit_marker_quiz, name='submit_marker_quiz'),
]