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

User: {{ cid_user.username }}

Assigned Exams

The following exams will be available to take when active. {% for exam_type, exams in available_exams %} {% if exams %}

{{exam_type|title}}

{% 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}}

{% 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 %}