summaryrefslogtreecommitdiff
path: root/templates/exam/monitor.html
diff options
context:
space:
mode:
authorPrabhu Ramachandran2011-11-17 02:15:33 +0530
committerPrabhu Ramachandran2011-11-17 02:15:33 +0530
commite2b3d315c3cd3eab79ad74224436b681cbf84371 (patch)
tree85daad94f7ffef98a649579a6e26083daf274f56 /templates/exam/monitor.html
parentccc597e122e35070e4bfdac396b6171ef2cbd354 (diff)
downloadonline_test-e2b3d315c3cd3eab79ad74224436b681cbf84371.tar.gz
online_test-e2b3d315c3cd3eab79ad74224436b681cbf84371.tar.bz2
online_test-e2b3d315c3cd3eab79ad74224436b681cbf84371.zip
ENH: Changing Quiz to QuestionPaper.
This changes the models. The Quiz should really be QuestionPaper and a Quiz should be like an event that the admin creates to start a quiz and each QuestionPaper should be related to a Quiz. This will be added later.
Diffstat (limited to 'templates/exam/monitor.html')
-rw-r--r--templates/exam/monitor.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/exam/monitor.html b/templates/exam/monitor.html
index 12360a2..f1c7779 100644
--- a/templates/exam/monitor.html
+++ b/templates/exam/monitor.html
@@ -2,12 +2,12 @@
<meta http-equiv="refresh" content="30"/>
-{% if quiz_list %}
+{% if paper_list %}
<table border="1" cellpadding="3">
<tr>
<th>Student </th> <th> Roll number </th> <th>Questions answered</th> <th>Total marks</th>
</tr>
- {% for paper in quiz_list %}
+ {% for paper in paper_list %}
<tr>
<td> {{ paper.username }} </td>
<td> {{ paper.rollno }} </td>
@@ -18,6 +18,6 @@
{% endfor %}
</table>
{% else %}
- <p> No quizzes so far. </p>
+ <p> No answer papers so far. </p>
{% endif %}