summaryrefslogtreecommitdiff
path: root/exam/urls.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2011-11-10 14:47:22 +0530
committerPrabhu Ramachandran2011-11-10 14:47:22 +0530
commit812f79bd79c54b3b362ef616c121fb500b0b8a11 (patch)
tree96289a3e2c33a453a9b290f6acd76464e213551c /exam/urls.py
parent6cf7eb9f1a69f596ea0dcc418c1b90d3fb8ec513 (diff)
downloadonline_test-812f79bd79c54b3b362ef616c121fb500b0b8a11.tar.gz
online_test-812f79bd79c54b3b362ef616c121fb500b0b8a11.tar.bz2
online_test-812f79bd79c54b3b362ef616c121fb500b0b8a11.zip
ENH: Adding a monitor page to see results
Adds a simple /exam/monitor page that displays current quiz results.
Diffstat (limited to 'exam/urls.py')
-rw-r--r--exam/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/exam/urls.py b/exam/urls.py
index cfb4764..1ca9755 100644
--- a/exam/urls.py
+++ b/exam/urls.py
@@ -5,6 +5,7 @@ urlpatterns = patterns('exam.views',
url(r'^start/$', 'start'),
url(r'^quit/$', 'quit'),
url(r'^complete/$', 'complete'),
+ url(r'^monitor/$', 'monitor'),
url(r'^(?P<q_id>\d+)/$', 'question'),
url(r'^(?P<q_id>\d+)/check/$', 'check'),
)