diff options
author | maheshgudi | 2017-01-18 02:42:29 +0530 |
---|---|---|
committer | maheshgudi | 2017-01-18 02:45:03 +0530 |
commit | f93527f83ff0b6d87cd9ffb10aac3cbb27d08b8a (patch) | |
tree | 303d12dbb3e3c5b5f44563809cbe5010f8d13865 /yaksh/urls.py | |
parent | c3205b84ebd1796d98e140952802cdc0baad19a7 (diff) | |
download | online_test-f93527f83ff0b6d87cd9ffb10aac3cbb27d08b8a.tar.gz online_test-f93527f83ff0b6d87cd9ffb10aac3cbb27d08b8a.tar.bz2 online_test-f93527f83ff0b6d87cd9ffb10aac3cbb27d08b8a.zip |
Can download csv of students' performance per course
Moderator can now download the csv dump of the performance of students in each quiz (best attempt of the quiz) for a course.
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 bdf14ea..629f8f5 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -113,4 +113,6 @@ urlpatterns += [ views.regrade, name='regrade'), url(r'^manage/(?P<mode>[\w\-]+)/(?P<quiz_id>\d+)/$', views.test_quiz), url(r'^manage/create_demo_course/$', views.create_demo_course), + url(r'^manage/courses/download_course_csv/(?P<course_id>\d+)/$', + views.download_course_csv), ] |