summaryrefslogtreecommitdiff
path: root/exam/urls.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2011-11-25 00:57:41 +0530
committerPrabhu Ramachandran2011-11-25 00:57:41 +0530
commit3375839bfc531329adc45994659be382295038b6 (patch)
tree987582097b8bc5e96d27f86874e1e3b47bfc823d /exam/urls.py
parent92cdea62ed993acd8a6c3c2798c6b89143c3cfb5 (diff)
downloadonline_test-3375839bfc531329adc45994659be382295038b6.tar.gz
online_test-3375839bfc531329adc45994659be382295038b6.tar.bz2
online_test-3375839bfc531329adc45994659be382295038b6.zip
ENH: Adding a convenient grading interface.
With this, you can grade a student's answer paper and give comments for each quiz paper they attempt. Also added a link to this grading interface to the user_data view.
Diffstat (limited to 'exam/urls.py')
-rw-r--r--exam/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/exam/urls.py b/exam/urls.py
index 129a83f..34e329f 100644
--- a/exam/urls.py
+++ b/exam/urls.py
@@ -10,6 +10,7 @@ urlpatterns = patterns('exam.views',
url(r'^monitor/$', 'monitor'),
url(r'^monitor/(?P<quiz_id>\d+)/$', 'monitor'),
url(r'^user_data/(?P<username>[a-zA-Z0-9_.]+)/$', 'user_data'),
+ url(r'^grade_user/(?P<username>[a-zA-Z0-9_.]+)/$', 'grade_user'),
url(r'^(?P<q_id>\d+)/$', 'question'),
url(r'^(?P<q_id>\d+)/check/$', 'check'),
)