{% extends 'generic/examcollection_base.html' %} {% block content %}

{{ object.name }} {% if object.date %} [{{object.date}}] {% endif %}

Edit Clone Delete

Authors: {{ object.get_authors }}

This collection contains the following exams

{% if object.anatomy_exams.all %}

Anatomy Exams:

{% with exams=object.anatomy_exams.all app_name="anatomy" %} {% include "exam_list.html#exam-list" %} {% endwith %} View exam list
{% endif %} {% if object.longs_exams.all %}

Longs Exams:

{% with exams=object.longs_exams.all app_name="longs" %} {% include "exam_list.html#exam-list" %} {% endwith %} View exam list
{% endif %} {% if object.rapids_exams.all %}

Rapids Exams:

{% with exams=object.rapids_exams.all app_name="rapids" %} {% include "exam_list.html#exam-list" %} {% endwith %} View exam list
{% endif %} {% if object.shorts_exams.all %}

Shorts Exams:

{% with exams=object.shorts_exams.all app_name="shorts" %} {% include "exam_list.html#exam-list" %} {% endwith %} View exam list
{% endif %} {% if object.physics_exams.all %}

Physics Exams:

{% with exams=object.physics_exams.all app_name="physics" %} {% include "exam_list.html#exam-list" %} {% endwith %} View exam list {% endif %} {% if object.sbas_exams.all %}

SBAs Exams:

{% with exams=object.sbas_exams.all app_name="sbas" %} {% include "exam_list.html#exam-list" %} {% endwith %} View exam list {% endif %}
{% include 'exam_overview_js.html' %} {% endblock %} {% block css %} {% endblock %}