diff options
author | prathamesh | 2013-07-08 11:22:01 +0530 |
---|---|---|
committer | prathamesh | 2013-07-08 11:22:01 +0530 |
commit | 754244da53f7e0a63c272ce6d1ffb15c1d5be0ae (patch) | |
tree | f505c0b5a1392f552580db5e30b8a33d6faccadb /testapp/exam/urls.py | |
parent | 8de499263ec00be5e500693b8db7f4b5ee0d15bd (diff) | |
download | online_test-754244da53f7e0a63c272ce6d1ffb15c1d5be0ae.tar.gz online_test-754244da53f7e0a63c272ce6d1ffb15c1d5be0ae.tar.bz2 online_test-754244da53f7e0a63c272ce6d1ffb15c1d5be0ae.zip |
Added few questions. Made changes to fix minor bugs which were found during testing.
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r-- | testapp/exam/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py index b3cfceb..14aaa8a 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -7,10 +7,10 @@ urlpatterns = patterns('exam.views', url(r'^results/$','results_user'), url(r'^start/$', 'start'), url(r'^start/(?P<questionpaper_id>\d+)/$','start'), - url(r'^quit/(?P<answerpaper_id>\d+)/$', 'quit'), + url(r'^quit/(?P<questionpaper_id>\d+)/$', 'quit'), url(r'^intro/$','start'), url(r'^complete/$', 'complete'), - url(r'^complete/(?P<answerpaper_id>\d+)/$', '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'), |