diff options
-rw-r--r-- | yaksh/urls.py | 3 |
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) ] |