summaryrefslogtreecommitdiff
path: root/testapp/exam/urls.py
diff options
context:
space:
mode:
authorprathamesh2015-04-07 14:33:46 +0530
committerprathamesh2015-04-07 14:33:46 +0530
commit7eaeb90e0db758894c2cebf8e062d65c1faa2a6d (patch)
tree3e2b2f7f8f9d40ad1ed2171d3c868538a4d30162 /testapp/exam/urls.py
parentd0b6afb0d73c8ed32d6ca1151f5e3c6b216c50b7 (diff)
downloadonline_test-7eaeb90e0db758894c2cebf8e062d65c1faa2a6d.tar.gz
online_test-7eaeb90e0db758894c2cebf8e062d65c1faa2a6d.tar.bz2
online_test-7eaeb90e0db758894c2cebf8e062d65c1faa2a6d.zip
Changed variable name
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r--testapp/exam/urls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py
index 6cd56cf..8a01a81 100644
--- a/testapp/exam/urls.py
+++ b/testapp/exam/urls.py
@@ -6,16 +6,16 @@ urlpatterns = patterns('testapp.exam.views',
url(r'^quizzes/$', 'quizlist_user'),
url(r'^results/$', 'results_user'),
url(r'^start/$', 'start'),
- url(r'^start/(?P<attempt_no>\d+)/(?P<questionpaper_id>\d+)/$', 'start'),
- url(r'^quit/(?P<attempt_no>\d+)/(?P<questionpaper_id>\d+)/$', 'quit'),
+ url(r'^start/(?P<attempt_num>\d+)/(?P<questionpaper_id>\d+)/$', 'start'),
+ url(r'^quit/(?P<attempt_num>\d+)/(?P<questionpaper_id>\d+)/$', 'quit'),
url(r'^intro/(?P<questionpaper_id>\d+)/$', 'intro'),
url(r'^complete/$', 'complete'),
- url(r'^complete/(?P<attempt_no>\d+)/(?P<questionpaper_id>\d+)/$',\
+ url(r'^complete/(?P<attempt_num>\d+)/(?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<attempt_no>\d+)/(?P<questionpaper_id>\d+)/$',\
+ url(r'^(?P<q_id>\d+)/check/(?P<attempt_num>\d+)/(?P<questionpaper_id>\d+)/$',\
'check'),
url(r'^intro/$', 'start'),