diff options
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r-- | testapp/exam/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py index 8a01a81..43970ce 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -18,6 +18,7 @@ urlpatterns = patterns('testapp.exam.views', url(r'^(?P<q_id>\d+)/check/(?P<attempt_num>\d+)/(?P<questionpaper_id>\d+)/$',\ 'check'), url(r'^intro/$', 'start'), + url(r'^(?P<q_id>\d+)/(?P<attempt_num>\d+)/(?P<questionpaper_id>\d+)/$', 'show_question'), url(r'^manage/$', 'prof_manage'), url(r'^manage/addquestion/$', 'add_question'), |