User: {{ cid_user.username }}
Assigned exams
Help
This page shows the exam(s) to which you have access.
When an exam is available to take it will be highlighted with the text [Active].
Once you have submitted answers you will be able to view them from the Exam results section. (Please note: although your answers will be visible as soon as they are submitted correct answers will only be available when the exam results have been published.)
The following exams will be available to take when active.
{% for exam_type, exams in available_exams %}
{% if exams %}
{{exam_type|title}}
{% for exam in exams %}
- {{exam.name}} {% if exam.active %}[Active]{% endif %} {% if exam.publish_results %}[Results Published]{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% if all_exams %}
Exam results
The following exam results been found. Click to view answers (and scores when the results are published):
{% for exam_type, exams in all_exams %}
{% if exams %}
{{exam_type|title}}
{% for exam in exams %}
-
{% if admin %}
{% else %}
{% endif %}
{{exam.name}} {% if exam.active %}[Active]{% endif %} {% if exam.publish_results %}[Results Published]{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if case_collections %}
Case Collection
The following Case Collections have been found.
{% for collection in case_collections %}
{{collection.name}} {% if collection.active %}[Active]{% endif %} {% if collection.publish_results %}[Results Published]{% endif %}
{% endfor %}
{% endif %}
{% endblock %}