diff options
author | prathamesh | 2016-02-25 00:04:01 +0530 |
---|---|---|
committer | prathamesh | 2016-02-25 00:04:01 +0530 |
commit | 3b055ad0ad3232a25408632a020d5e3c284c245b (patch) | |
tree | a8496bd91dfc49ec74bdfe1e585c1202083f5c1c /yaksh/urls.py | |
parent | 815cd103ec67bcea8cdced706138063cecdcef8c (diff) | |
download | online_test-3b055ad0ad3232a25408632a020d5e3c284c245b.tar.gz online_test-3b055ad0ad3232a25408632a020d5e3c284c245b.tar.bz2 online_test-3b055ad0ad3232a25408632a020d5e3c284c245b.zip |
Question Statistics for a quiz per attempt.
Shows the number of appearance of a question versus number of times
the question was answered correctly
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r-- | yaksh/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py index 096f582..e6c2e15 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -52,6 +52,8 @@ urlpatterns = patterns('yaksh.views', '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'), |