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

{% endif %}
    {% for question in questions.all %}
  1. {% for image in question.get_images %} thumbail {% empty %} No image added. {% endfor %} {% if question.get_best_sample_answer %} {{ question.get_best_sample_answer }} (Score: {{question.get_best_sample_answer.score}}) {% else %} No sample answer available. Add one now? {% 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 %}