summaryrefslogtreecommitdiff
path: root/yaksh/templates/yaksh/complete.html
blob: 98adf9ba892f1f503d02dd14bc53ff08154493fd (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 paper.questions_answered.all or paper.questions_unanswered.all %}
			<br><center><table class="bordered-table zebra-striped span8"
			 style="text-align:left;">
				<tr><td><b>Submitted Questions</b></td>
				<td>
				{% if paper.questions_answered.all %}
					{{ paper.questions_answered.all|join:", " }}
				{% else %}
					<p><b>No Questions have been Submitted</b></p>
				{% endif %}
				</td></tr>
				<tr><td><b>Unattempted Questions</b></td>
				<td>
				{% if paper.questions_unanswered.all %}
					{{ paper.questions_unanswered.all|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/" id="login_again"> Login Again </a></center>
{% endblock content %}