diff options
author | Prabhu Ramachandran | 2016-07-05 10:00:35 -0400 |
---|---|---|
committer | GitHub | 2016-07-05 10:00:35 -0400 |
commit | 15152d232ab81a1ec6af24b10424d85f1c01d170 (patch) | |
tree | 283190f3ab51896e75d538296036272e856a1f7d /yaksh/urls.py | |
parent | c8dfe62663d715dcf4b571c1f738428165734d2a (diff) | |
parent | 9c61c84194e6b52913dfc284765a7b7bd77201ad (diff) | |
download | online_test-15152d232ab81a1ec6af24b10424d85f1c01d170.tar.gz online_test-15152d232ab81a1ec6af24b10424d85f1c01d170.tar.bz2 online_test-15152d232ab81a1ec6af24b10424d85f1c01d170.zip |
Merge pull request #101 from maheshgudi/test_modes
Test modes
Diffstat (limited to 'yaksh/urls.py')
-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) ] |