summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/monitor.html
diff options
context:
space:
mode:
authorhardythe12012-04-14 07:24:02 +0530
committerhardythe12012-04-14 07:24:02 +0530
commit9d0a737afdb23a50b28237055c87bfa72197d99b (patch)
treef0be0b52f49e7dee75239b2fe7f2be8e906abe35 /testapp/templates/exam/monitor.html
parent5d7ab20a710e2374a3345b07ed62154456dbd2c8 (diff)
downloadonline_test-9d0a737afdb23a50b28237055c87bfa72197d99b.tar.gz
online_test-9d0a737afdb23a50b28237055c87bfa72197d99b.tar.bz2
online_test-9d0a737afdb23a50b28237055c87bfa72197d99b.zip
minor changes as model changes
Diffstat (limited to 'testapp/templates/exam/monitor.html')
-rw-r--r--testapp/templates/exam/monitor.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/testapp/templates/exam/monitor.html b/testapp/templates/exam/monitor.html
index 29cb6e9..aa8b678 100644
--- a/testapp/templates/exam/monitor.html
+++ b/testapp/templates/exam/monitor.html
@@ -27,8 +27,8 @@
{# This is rendered when we are just viewing exam/monitor #}
{% if quizzes %}
<ul>
-{% for quiz in quizzes %}
-<li><a href="{{URL_ROOT}}/exam/manage/monitor/{{quiz.id}}/">{{ quiz.description }}</a></li>
+{% for q in quizzes %}
+<li><a href="{{URL_ROOT}}/exam/manage/monitor/{{q.id}}/">{{ q.quiz.description }}</a></li>
{% endfor %}
</ul>
{% endif %}