summaryrefslogtreecommitdiff
path: root/testapp/exam/urls.py
diff options
context:
space:
mode:
authorhardythe12012-03-28 11:55:34 +0530
committerhardythe12012-03-28 11:55:34 +0530
commit64b38d3365f1d65132942fce6e29fed7da076bba (patch)
tree15c07993620743f097cbf739e90fc3da59b957b1 /testapp/exam/urls.py
parent246478f4ef75ae713e96a64d210bd3710bed3df9 (diff)
downloadonline_test-64b38d3365f1d65132942fce6e29fed7da076bba.tar.gz
online_test-64b38d3365f1d65132942fce6e29fed7da076bba.tar.bz2
online_test-64b38d3365f1d65132942fce6e29fed7da076bba.zip
minor changes
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r--testapp/exam/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py
index 1e1cd12..f435e63 100644
--- a/testapp/exam/urls.py
+++ b/testapp/exam/urls.py
@@ -3,9 +3,9 @@ from django.conf.urls.defaults import patterns, include, url
urlpatterns = patterns('exam.views',
url(r'^$', 'index'),
url(r'^login/$', 'user_login'),
- url(r'^quizlist/$', 'quizlist'),
- url(r'^start/(?P<quiz_id>\d+)/$', 'start'),
+ url(r'^start/$', 'start'),
url(r'^quit/$', 'quit'),
+ url(r'^intro/$','start'),
url(r'^complete/$', 'complete'),
url(r'^register/$', 'user_register'),
url(r'^(?P<q_id>\d+)/$', 'question'),