diff options
author | prathamesh | 2013-08-19 13:09:10 +0530 |
---|---|---|
committer | prathamesh | 2013-08-19 13:09:10 +0530 |
commit | fbeed0456532b2b36f02a26dbfffc132235d5e4c (patch) | |
tree | 3a4f08f8e889b4d27a018ea6915d954bf445f1c3 /testapp/exam/urls.py | |
parent | 754244da53f7e0a63c272ce6d1ffb15c1d5be0ae (diff) | |
download | online_test-fbeed0456532b2b36f02a26dbfffc132235d5e4c.tar.gz online_test-fbeed0456532b2b36f02a26dbfffc132235d5e4c.tar.bz2 online_test-fbeed0456532b2b36f02a26dbfffc132235d5e4c.zip |
This branch was created for testing the app.
Changes made here are during the testing phase.
And the feedbacks recevied are implemented.
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r-- | testapp/exam/urls.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py index 14aaa8a..33b2edf 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -8,14 +8,14 @@ urlpatterns = patterns('exam.views', url(r'^start/$', 'start'), url(r'^start/(?P<questionpaper_id>\d+)/$','start'), url(r'^quit/(?P<questionpaper_id>\d+)/$', 'quit'), - url(r'^intro/$','start'), + url(r'^intro/(?P<questionpaper_id>\d+)/$','intro'), url(r'^complete/$', 'complete'), url(r'^complete/(?P<questionpaper_id>\d+)/$', 'complete'), url(r'^register/$', 'user_register'), url(r'^(?P<q_id>\d+)/$', 'question'), url(r'^(?P<q_id>\d+)/check/$', 'check'), url(r'^(?P<q_id>\d+)/check/(?P<questionpaper_id>\d+)/$', 'check'), - + url(r'^intro/$', 'start'), url(r'^manage/$', 'prof_manage'), url(r'^manage/addquestion/$', 'add_question'), @@ -32,7 +32,7 @@ urlpatterns = patterns('exam.views', url(r'^manage/showquestionpapers/$','show_all_questionpapers'), url(r'^manage/showquestionpapers/(?P<questionpaper_id>\d+)/$',\ 'show_all_questionpapers'), - url(r'^manage/monitor/(?P<quiz_id>\d+)/$', 'monitor'), + url(r'^manage/monitor/(?P<questionpaper_id>\d+)/$', 'monitor'), url(r'^manage/user_data/(?P<username>[a-zA-Z0-9_.]+)/$','user_data'), url(r'^manage/designquestionpaper/$','design_questionpaper'), url(r'^manage/designquestionpaper/(?P<questionpaper_id>\d+)/$',\ |