{% extends 'rapids/exams.html' %} {% block navigation %} {{ block.super }} {% include 'generic/exam_overview_headers.html' %} {% endblock navigation %} {% block content %} {% load thumbnail %}
{% if exam.exam_mode %}

{% endif %} {# Migrate all rapids in this exam to shorts (exam authors + superusers) #} {% if request.user.is_superuser or request.user in exam.author.all %} {% endif %}
    {% for question in questions.all %}
  1. {% for image in question.get_images %} thumbail {% empty %} No image added. {% endfor %} {% if not question.normal %} Abnormality: {{ question.get_abnormalities }} Region: {{ question.get_regions }}
    {{ question.get_primary_answer }} {% else %} Normal {% endif %}
    Examination: {{ question.get_examinations }}, {% if exam.exam_mode %} Mark {% endif %} [id: {{question.pk}}]
  2. {% endfor %}
Author: {% for author in exam.author.all %} {{ author }}, {% endfor %}
{% include 'generic/exam_footer.html' %}
{% include 'exam_overview_js.html' %} {% endblock %}