summaryrefslogtreecommitdiff
path: root/templates/exam/monitor.html
blob: f1c7779ce9e0215099fb5eacc4826d864522f6fe (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 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 paper_list %}
    <tr> 
        <td> {{ paper.username }} </td>
        <td> {{ paper.rollno }} </td>
        <td> {{ paper.answered }} </td> 
        <td> {{ paper.total }} </td>
    
    </tr>
    {% endfor %}
</table>
{% else %}
    <p> No answer papers so far. </p>
{% endif %}