summaryrefslogtreecommitdiff
path: root/yaksh/urls.py
diff options
context:
space:
mode:
authormaheshgudi2016-05-10 17:50:22 +0530
committermaheshgudi2016-05-27 12:43:12 +0530
commit04a4189f5c5786ff121a68f8f191505bbbde0603 (patch)
tree287cd97dee3c5350237cb516436c085b3b71b3de /yaksh/urls.py
parentfd146db8ed52d62552c4e27de0b2d803a7e5b4b8 (diff)
downloadonline_test-04a4189f5c5786ff121a68f8f191505bbbde0603.tar.gz
online_test-04a4189f5c5786ff121a68f8f191505bbbde0603.tar.bz2
online_test-04a4189f5c5786ff121a68f8f191505bbbde0603.zip
added urls for test_modes
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r--yaksh/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py
index feac8c1..d7b56e4 100644
--- a/yaksh/urls.py
+++ b/yaksh/urls.py
@@ -90,7 +90,8 @@ urlpatterns += [
url(r'^manage/allotted_course/$', views.allotted_courses),
url(r'^manage/remove_teachers/(?P<course_id>\d+)/$', views.remove_teachers),
url(r'^manage/download_questions/$', views.show_all_questions),
- url(r'^manage/upload_questions/$', views.show_all_questions)
+ url(r'^manage/upload_questions/$', views.show_all_questions),
+ url(r'^manage/(?P<mode>[\w\-]+)/(?P<quiz_id>\d+)/$', views.test_quiz)
]