{% extends 'physics/exams.html' %} {% block content %} {% load thumbnail %}
{% include 'generic/exam_overview_headers.html' %} This exam will be available to take here (when active). {% autoescape off %}
    {% for question in questions.all %}
  1. {{ question.stem }}
    1. {{ question.a }}: {{ question.a_answer }}
    2. {{ question.b }}: {{ question.b_answer }}
    3. {{ question.c }}: {{ question.c_answer }}
    4. {{ question.d }}: {{ question.d_answer }}
    5. {{ question.e }}: {{ question.e_answer }}
    Category: {{ question.category }}, View [id: {{question.pk}}] Edit
  2. {% endfor %}
{% endautoescape %}
{% include 'exam_overview_js.html' %} {% endblock %}