From fbeed0456532b2b36f02a26dbfffc132235d5e4c Mon Sep 17 00:00:00 2001 From: prathamesh Date: Mon, 19 Aug 2013 13:09:10 +0530 Subject: This branch was created for testing the app. Changes made here are during the testing phase. And the feedbacks recevied are implemented. --- testapp/exam/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testapp/exam/urls.py') 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\d+)/$','start'), url(r'^quit/(?P\d+)/$', 'quit'), - url(r'^intro/$','start'), + url(r'^intro/(?P\d+)/$','intro'), url(r'^complete/$', 'complete'), url(r'^complete/(?P\d+)/$', 'complete'), url(r'^register/$', 'user_register'), url(r'^(?P\d+)/$', 'question'), url(r'^(?P\d+)/check/$', 'check'), url(r'^(?P\d+)/check/(?P\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\d+)/$',\ 'show_all_questionpapers'), - url(r'^manage/monitor/(?P\d+)/$', 'monitor'), + url(r'^manage/monitor/(?P\d+)/$', 'monitor'), url(r'^manage/user_data/(?P[a-zA-Z0-9_.]+)/$','user_data'), url(r'^manage/designquestionpaper/$','design_questionpaper'), url(r'^manage/designquestionpaper/(?P\d+)/$',\ -- cgit