From 6cf7eb9f1a69f596ea0dcc418c1b90d3fb8ec513 Mon Sep 17 00:00:00 2001 From: Prabhu Ramachandran Date: Wed, 9 Nov 2011 03:05:03 +0530 Subject: ENH: Saving answers and added quit page/button. Cleaned up the models so the answers submitted are all saved. Also added a quit button to each question page so a user can easily quit the exam in order that another may start. --- exam/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'exam/urls.py') diff --git a/exam/urls.py b/exam/urls.py index 7922255..cfb4764 100644 --- a/exam/urls.py +++ b/exam/urls.py @@ -3,6 +3,7 @@ from django.conf.urls.defaults import patterns, include, url urlpatterns = patterns('exam.views', url(r'^$', 'index'), url(r'^start/$', 'start'), + url(r'^quit/$', 'quit'), url(r'^complete/$', 'complete'), url(r'^(?P\d+)/$', 'question'), url(r'^(?P\d+)/check/$', 'check'), -- cgit