diff options
author | prathamesh | 2016-03-16 12:05:27 +0530 |
---|---|---|
committer | prathamesh | 2016-03-16 15:05:29 +0530 |
commit | aab320d8867a15569ddd0da029f13ea5740f6518 (patch) | |
tree | 2f0f84db2fd437124c6dce970cd7dd8140d79e3a /yaksh/urls.py | |
parent | ef3cd39ebdf9d9fc9011ba4bc470ec5018bb8077 (diff) | |
download | online_test-aab320d8867a15569ddd0da029f13ea5740f6518.tar.gz online_test-aab320d8867a15569ddd0da029f13ea5740f6518.tar.bz2 online_test-aab320d8867a15569ddd0da029f13ea5740f6518.zip |
A moderator can download csv file for a given question paper.
csv includes the latest attempt for the quiz/questionpaper.
It contains user details and marks for the quiz.
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 d74e244..be33051 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -65,6 +65,8 @@ urlpatterns += patterns('yaksh.views', 'show_statistics'), url(r'^manage/statistics/question/(?P<questionpaper_id>\d+)/(?P<attempt_number>\d+)/$', 'show_statistics'), + url(r'^manage/monitor/download_csv/(?P<questionpaper_id>\d+)/$', + 'download_csv'), url(r'manage/courses/$', 'courses'), url(r'manage/add_course/$', 'add_course'), url(r'manage/course_detail/(?P<course_id>\d+)/$', 'course_detail'), |