blob: 21618e9b1f0dc3bc4e74712bd191b1f817295a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<h1> Current quiz results </h1>
<meta http-equiv="refresh" content="30"/>
{% if quiz_list %}
<table border="1">
<tr>
<th>Student </th> <th>Questions answered</th> <th>Total marks</th>
</tr>
{% for paper in quiz_list %}
<tr>
<td>{{ paper.username }} </td>
<td>{{ paper.answered }} </td>
<td> {{ paper.total }} </td>
</tr>
{% endfor %}
</table>
{% else %}
<p> No quizzes so far. </p>
{% endif %}
|