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

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