diff options
author | Prabhu Ramachandran | 2011-11-25 00:57:41 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2011-11-25 00:57:41 +0530 |
commit | 3375839bfc531329adc45994659be382295038b6 (patch) | |
tree | 987582097b8bc5e96d27f86874e1e3b47bfc823d /exam/urls.py | |
parent | 92cdea62ed993acd8a6c3c2798c6b89143c3cfb5 (diff) | |
download | online_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.py | 1 |
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'), ) |