From 8bedc83e30c80636df18b301a84c69cb6a543e53 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 21 Mar 2012 17:18:19 +0530 Subject: Modifications to show quizlist --- testapp/exam/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testapp/exam/urls.py') 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\d+)/$', 'start'), url(r'^quit/$', 'quit'), url(r'^complete/$', 'complete'), url(r'^register/$', 'user_register'), -- cgit