{% extends 'longs/exams.html' %} {% block navigation %} {{ block.super }} {% include 'generic/exam_overview_headers.html' %} {% endblock navigation %} {% block content %} {% load thumbnail %}
    {% for question in questions.all %}
  1. Description: {{ question.description}}
    History: {{ question.history}}
    Author(s): {{question.get_authors}}
    View / Edit [id: {{question.pk}}]
    {% for seriesdetail in question.seriesdetail_set.all %}
    Series {{forloop.counter }}:
    {{seriesdetail.longseries.get_block}}
    {% empty %} No series {% endfor %}
  2. {% endfor %}
Author: {% for author in exam.author.all %} {{ author }}, {% endfor %}
{% include 'generic/exam_footer.html' %}
{% include 'exam_overview_js.html' %} {% endblock %}