summaryrefslogtreecommitdiff
path: root/yaksh/urls.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-02-29 15:59:07 +0530
committerPrabhu Ramachandran2016-02-29 15:59:07 +0530
commit2bff22d61d5d4d6f038c5b368ec437c6bda1dfbe (patch)
treea8496bd91dfc49ec74bdfe1e585c1202083f5c1c /yaksh/urls.py
parentb1cb1ece826e39639d339f5dee71743044402b74 (diff)
parent3b055ad0ad3232a25408632a020d5e3c284c245b (diff)
downloadonline_test-2bff22d61d5d4d6f038c5b368ec437c6bda1dfbe.tar.gz
online_test-2bff22d61d5d4d6f038c5b368ec437c6bda1dfbe.tar.bz2
online_test-2bff22d61d5d4d6f038c5b368ec437c6bda1dfbe.zip
Merge pull request #77 from prathamesh920/stats_per_question
Added statistics per question for a quiz
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r--yaksh/urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py
index 61222b8..e6c2e15 100644
--- a/yaksh/urls.py
+++ b/yaksh/urls.py
@@ -50,6 +50,10 @@ urlpatterns = patterns('yaksh.views',
url(r'^manage/designquestionpaper/manual$', 'manual_questionpaper'),
url(r'^manage/designquestionpaper/manual/(?P<questionpaper_id>\d+)/$',\
'manual_questionpaper'),
+ url(r'^manage/statistics/question/(?P<questionpaper_id>\d+)/$',
+ 'show_statistics'),
+ url(r'^manage/statistics/question/(?P<questionpaper_id>\d+)/(?P<attempt_number>\d+)/$',
+ 'show_statistics'),
url(r'^ajax/questionpaper/(?P<query>.+)/$', 'ajax_questionpaper'),
url(r'^ajax/questions/filter/$', 'ajax_questions_filter'),