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 /templates/exam/user_data.html | |
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 'templates/exam/user_data.html')
-rw-r--r-- | templates/exam/user_data.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/exam/user_data.html b/templates/exam/user_data.html index 7563e0e..1e2c392 100644 --- a/templates/exam/user_data.html +++ b/templates/exam/user_data.html @@ -21,6 +21,8 @@ Last login: {{ data.user.last_login }} </p> {% if data.papers %} +<a href="{{URL_ROOT}}/exam/grade_user/{{ data.user.username }}/"> + Grade/correct paper</a> {% for paper in data.papers %} @@ -54,5 +56,9 @@ User IP address: {{ paper.user_ip }} {% endfor %} {# for paper in data.papers #} {% endif %} {# if data.papers #} +<br /> +<hr /> +<a href="{{URL_ROOT}}/exam/grade_user/{{ data.user.username }}/"> + Grade/correct paper</a> {% endblock content %} |