diff options
author | hardythe1 | 2012-03-21 17:18:19 +0530 |
---|---|---|
committer | hardythe1 | 2012-03-21 17:18:19 +0530 |
commit | 8bedc83e30c80636df18b301a84c69cb6a543e53 (patch) | |
tree | 2065b5d0dd346a350f91e0b873c34e76bc3ab111 /testapp/exam/urls.py | |
parent | e524bef336df95fd307d045af37c379bccf3ea14 (diff) | |
download | online_test-8bedc83e30c80636df18b301a84c69cb6a543e53.tar.gz online_test-8bedc83e30c80636df18b301a84c69cb6a543e53.tar.bz2 online_test-8bedc83e30c80636df18b301a84c69cb6a543e53.zip |
Modifications to show quizlist
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r-- | testapp/exam/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py index a8b81f7..e73ef2d 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -3,7 +3,8 @@ from django.conf.urls.defaults import patterns, include, url urlpatterns = patterns('exam.views', url(r'^$', 'index'), url(r'^login/$', 'user_login'), - url(r'^start/$', 'start'), + url(r'^quizlist/$', 'quizlist'), + url(r'^start/(?P<quiz_id>\d+)/$', 'start'), url(r'^quit/$', 'quit'), url(r'^complete/$', 'complete'), url(r'^register/$', 'user_register'), |