From ce4732b65c378a38cac5a504a606872ab25918ec Mon Sep 17 00:00:00 2001 From: prathamesh Date: Thu, 18 Feb 2016 17:48:16 +0530 Subject: Monitor shows latest attempt of a student for a given quiz User data is shown as per the question paper/quiz and not all together. It also shows other attempts for the same question paper. And then grade user interface is as per question paper if nagivated via monitor interface. --- yaksh/urls.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'yaksh/urls.py') diff --git a/yaksh/urls.py b/yaksh/urls.py index 66159f0..61222b8 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -28,6 +28,8 @@ urlpatterns = patterns('yaksh.views', url(r'^manage/editquestion/$', 'edit_question'), url(r'^manage/addquiz/(?P\d+)/$', 'add_quiz'), url(r'^manage/gradeuser/$', 'show_all_users'), + url(r'^manage/gradeuser/(?P.*)/(?P\d+)/$', + 'grade_user'), url(r'^manage/gradeuser/(?P.*)/$', 'grade_user'), url(r'^manage/questions/$', 'show_all_questions'), url(r'^manage/showquiz/$', 'show_all_quiz'), @@ -36,6 +38,8 @@ urlpatterns = patterns('yaksh.views', url(r'^manage/showquestionpapers/(?P\d+)/$',\ 'show_all_questionpapers'), url(r'^manage/monitor/(?P\d+)/$', 'monitor'), + url(r'^manage/user_data/(?P.*)/(?P\d+)/$', + 'user_data'), url(r'^manage/user_data/(?P.*)/$', 'user_data'), url(r'^manage/designquestionpaper/$', 'design_questionpaper'), url(r'^manage/designquestionpaper/(?P\d+)/$',\ -- cgit