summaryrefslogtreecommitdiff
path: root/testapp/templates/exam
diff options
context:
space:
mode:
authorjayparikh1112012-02-22 16:02:07 +0530
committerjayparikh1112012-02-22 16:02:07 +0530
commitf2d65592affd34bc60cf4a3a2c72de1d84c934c0 (patch)
tree907639272648fd5976c052a8635c40aee8d53cbd /testapp/templates/exam
parent2b6b595ca8652696ab9059add8ea54661cab5f31 (diff)
downloadonline_test-f2d65592affd34bc60cf4a3a2c72de1d84c934c0.tar.gz
online_test-f2d65592affd34bc60cf4a3a2c72de1d84c934c0.tar.bz2
online_test-f2d65592affd34bc60cf4a3a2c72de1d84c934c0.zip
Changes related to Authentication of Moderator
Diffstat (limited to 'testapp/templates/exam')
-rw-r--r--testapp/templates/exam/monitor.html4
-rw-r--r--testapp/templates/exam/show_quiz.html1
-rw-r--r--testapp/templates/exam/showusers.html2
3 files changed, 4 insertions, 3 deletions
diff --git a/testapp/templates/exam/monitor.html b/testapp/templates/exam/monitor.html
index a802de2..60814c7 100644
--- a/testapp/templates/exam/monitor.html
+++ b/testapp/templates/exam/monitor.html
@@ -55,9 +55,9 @@ table tbody th {
</tr>
{% for paper in papers %}
<tr>
- <td> <a href="{{URL_ROOT}}/exam/user_data/{{paper.user.username}}">
+ <td> <a href="{{URL_ROOT}}/exam/manage/user_data/{{paper.user.username}}">
{{ paper.user.get_full_name.title }}</a> </td>
- <td> <a href="{{URL_ROOT}}/exam/user_data/{{paper.user.username}}">
+ <td> <a href="{{URL_ROOT}}/exam/manage/user_data/{{paper.user.username}}">
{{ paper.user.username }}</a> </td>
<td> {{ paper.profile.roll_number }} </td>
<td> {{ paper.profile.institute }} </td>
diff --git a/testapp/templates/exam/show_quiz.html b/testapp/templates/exam/show_quiz.html
index 2e9059d..001b2fe 100644
--- a/testapp/templates/exam/show_quiz.html
+++ b/testapp/templates/exam/show_quiz.html
@@ -33,6 +33,7 @@ function my_confirm(frm)
<center><h3>Quiz List</h3></center>
<form method="post" action="" name='frm'>
{% csrf_token %}
+
{% for quiz in quizzes %}
<input type=checkbox name='quiz' value={{quiz.id}} />&nbsp;&nbsp;<a href="{{URL_ROOT}}/exam/manage/addquiz/{{quiz.id}}/">{{ quiz.description }}</a><br>
diff --git a/testapp/templates/exam/showusers.html b/testapp/templates/exam/showusers.html
index 038cb8b..441b921 100644
--- a/testapp/templates/exam/showusers.html
+++ b/testapp/templates/exam/showusers.html
@@ -8,6 +8,6 @@ List of Users
{% block manage %}
{% for name in user %}
-<a href="{{URL_ROOT}}/exam/manage/grade_user/{{ name }}">{{ name }}</a><br>
+<a href="{{URL_ROOT}}/exam/manage/gradeuser/{{ name }}">{{ name }}</a><br>
{% endfor %}
{% endblock %}