diff options
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r-- | yaksh/urls.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py index b32bc36..18a64c2 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -88,5 +88,9 @@ urlpatterns += [ url(r'^manage/searchteacher/(?P<course_id>\d+)/$', views.search_teacher), url(r'^manage/addteacher/(?P<course_id>\d+)/$', views.add_teacher), url(r'^manage/allotted_course/$', views.allotted_courses), - url(r'^manage/remove_teachers/(?P<course_id>\d+)/$', views.remove_teachers) + url(r'^manage/remove_teachers/(?P<course_id>\d+)/$', views.remove_teachers), + url(r'^manage/download_questions/$', views.show_all_questions), + url(r'^manage/upload_questions/$', views.show_all_questions) ] + + |