diff options
author | prathamesh | 2016-08-25 16:48:29 +0530 |
---|---|---|
committer | prathamesh | 2016-08-25 16:48:29 +0530 |
commit | c0909251ecffcdc0df34bb9ad4a90994708c3a5c (patch) | |
tree | 1f68e7b63d6b817d56a0fb34af29b78c8003a7d5 /yaksh/urls.py | |
parent | e1e299b671a19b65705fb256d282e1e802a4c051 (diff) | |
download | online_test-c0909251ecffcdc0df34bb9ad4a90994708c3a5c.tar.gz online_test-c0909251ecffcdc0df34bb9ad4a90994708c3a5c.tar.bz2 online_test-c0909251ecffcdc0df34bb9ad4a90994708c3a5c.zip |
Students can view their submission i.e. answer paper
A simple interface for students to view their answerpaper.
Moderator has an option where he can allow to students to view their
answerpaper.
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r-- | yaksh/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py index cd97dd4..931e69c 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -49,6 +49,7 @@ urlpatterns += [ views.skip), url(r'^enroll_request/(?P<course_id>\d+)/$', views.enroll_request, name='enroll_request'), url(r'^self_enroll/(?P<course_id>\d+)/$', views.self_enroll, name='self_enroll'), + url(r'^view_answerpaper/(?P<questionpaper_id>\d+)/$', views.view_answerpaper, name='view_answerpaper'), url(r'^manage/$', views.prof_manage, name='manage'), url(r'^manage/addquestion/$', views.add_question), url(r'^manage/addquestion/(?P<question_id>\d+)/$', views.edit_question), |