{% extends 'base.html' %} {% block content %}

CID: {{ cid }}

Help
Brief guide

This page shows the exam(s) to which you have access.

When an exam is available to take it will have a "Start" button next to it.

Once you have submitted answers you will be able to view them from the Exam results section. Correct answers are visible only after results are published.

If you have not submitted any answer for an exam it will not appear in the Exam Results section below. You can review published results from the assigned exams section.

Assigned exams

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 }} {% if exam.active %} Active {% endif %} {% if exam.publish_results %} Results Published {% endif %}
    {% if exam.active %} {% endif %} {% if exam.publish_results %} View Results {% endif %}
  • {% endfor %}
{% endif %} {% endfor %}
{% if all_exams %}

Exam results

The following exam results have been found. Click to view answers (and scores when published):

{% for exam_type, exams in all_exams %} {% if exams %}
{{ exam_type|title }}
    {% for exam in exams %}
  • {{ exam }}
    {% if exam.active %}Active{% endif %} {% if exam.publish_results %}Results Published{% endif %}
  • {% endfor %}
{% endif %} {% endfor %}
{% endif %} {% if case_collections %}

Case Collections

The following Case Collections have been found.

{% endif %}
{% endblock %}