CID: {{ cid }}
Assigned exams
The following exams will be available to take when active.
{% for exam_type, exams in available_exams %}
{{exam_type}}
{% 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 %}
- {{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 %}