blob: 08abe76419db9178bab240898ec491e4984fcc56 (
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
|
{% extends "base.html" %}
{% block title %}Good bye!{% endblock %}
{% block pagetitle %}Online Test{% endblock %}
{% block content %}
{% csrf_token %}
{% if submitted or unattempted %}
<br><center><table class="bordered-table zebra-striped span8"
style="text-align:left;">
<tr><td><b>Submitted Questions</b></td>
<td>
{% if submitted %}
{{ submitted|join:", " }}
{% else %}
<p><b>No Questions have been Submitted</b></p>
{% endif %}
</td></tr>
<tr><td><b>Unattempted Questions</b></td>
<td>
{% if unattempted %}
{{ unattempted|join:", " }}
{% else %}
<p><b>All Questions have been Submitted</b></p>
{% endif %}
</td></tr>
</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/"> Login Again </a></center>
{% endblock content %}
|