blob: 01d5bf6bbd143708f8c719d099199dc3e0777c57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{% extends "base.html" %}
{% block pagetitle %}Online Test{% endblock %}
{% block content %}
{% csrf_token %}
{% if paper.questions_answered.all or paper.questions_unanswered.all %}
<center><table class="table table-bordered" >
<caption> Submission Status </caption>
<thead>
<tr>
<th> Question</th>
<th> State </th>
</tr>
</thead>
{% for question in paper.questions.all %}
<tbody>
{% if question in paper.questions_answered.all %}
<tr class="info">
<td> {{ question.summary }} </td>
<td> Attempted </td>
{% else %}
<tr class="danger">
<td> {{ question }} </td>
<td> Not Attempted </td>
{% endif %}
</tr>
</tbody>
{% endfor %}
</table></center>
{% endif %}
<center><h2> Good bye! </h2></center>
<center><h4> {{message}} </h4></center>
<br><center><h4>You may now close the browser.</h4></center><br>
<center><a href="{{URL_ROOT}}/exam/" id="login_again"> Login Again </a></center>
{% endblock content %}
|