summaryrefslogtreecommitdiff
path: root/templates/exam/monitor.html
blob: 12360a2b3f5763b02b66444609d9222b1ff0a5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<h1> Current quiz results </h1>

<meta http-equiv="refresh" content="30"/>

{% if quiz_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 %}
    <tr> 
        <td> {{ paper.username }} </td>
        <td> {{ paper.rollno }} </td>
        <td> {{ paper.answered }} </td> 
        <td> {{ paper.total }} </td>
    
    </tr>
    {% endfor %}
</table>
{% else %}
    <p> No quizzes so far. </p>
{% endif %}