{% extends 'anatomy/exams.html' %} {% block navigation %} {{ block.super }} {% include 'generic/exam_overview_headers.html' %} {% endblock navigation %} {% block content %} {% load thumbnail %}
    {% for question in questions %}
  1. {% if question.image %} thumbail {% else %} No image added. {% endif %} {{ question.description }}
    {{ question.question_type }}: {{ question.get_primary_answer }}
    Modality: {{ question.modality }}, {% 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 %}