{% extends 'sbas/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|safe }}
    1. {{ question.a_answer|safe }}
    2. {{ question.b_answer|safe }}
    3. {{ question.c_answer|safe }}
    4. {{ question.d_answer|safe }}
    5. {{ question.e_answer|safe }}
    6. Best answer : {{question.best_answer}} ({{question.get_correct_answer_stripped}})
    Category: {{ question.category }}, View Edit
  2. {% endfor %}
{% endautoescape %}
{% endblock %}