From aab320d8867a15569ddd0da029f13ea5740f6518 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 16 Mar 2016 12:05:27 +0530 Subject: 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. --- yaksh/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'yaksh/urls.py') 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\d+)/(?P\d+)/$', 'show_statistics'), + url(r'^manage/monitor/download_csv/(?P\d+)/$', + 'download_csv'), url(r'manage/courses/$', 'courses'), url(r'manage/add_course/$', 'add_course'), url(r'manage/course_detail/(?P\d+)/$', 'course_detail'), -- cgit