26 lines
775 B
HTML
26 lines
775 B
HTML
|
|
{% if view_all_results %}
|
|
<div class="alert alert-info" role="alert">
|
|
Exam state:
|
|
|
|
{% if exam.active %}
|
|
This exam is available to take.
|
|
{% else %}
|
|
This exam is NOT available to take.
|
|
{% endif %}
|
|
|
|
|
|
{% if exam.publish_results %}
|
|
Results are published.
|
|
{% else %}
|
|
Results are NOT published.
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
{% if not exam.publish_results %}
|
|
<div class="alert alert-info" role="alert">Results are not currently published. You can see your own answers below.</a></div>
|
|
{% endif %}
|
|
{% endif %}
|
|
<h2>Exam: {{ exam.name }}</h2>
|
|
<h3>Candidate: {{ cid|default_if_none:request.user.username }}</h3>
|
|
Answers: |