{% extends 'rapids/exams.html' %} {% block content %} {% load thumbnail %}
{% include 'generic/exam_overview_headers.html' %}

    {% for question in questions.all %}
  1. {% for image in question.get_images %} thumbail {% endfor %} {% if not question.normal %} Abnormality: {{ question.get_abnormalities }} Region: {{ question.get_regions }}
    {{ question.get_primary_answer }} {% else %} Normal {% endif %}
    Examination: {{ question.get_examinations }}, Mark [id: {{question.pk}}]
  2. {% endfor %}
Author: {% for author in exam.author.all %} {{ author }}, {% endfor %}
{% if can_edit %}

{% endif %}
JSON creation time: {{exam.json_creation_time}} ({{exam.json_creation_time|date:"c"}}), JSON creation id: {{exam.exam_json_id}}
JSON JSON (unbased) Refresh JSON cache
{% include 'exam_overview_js.html' %} {% endblock %}