diff options
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'), |