{% extends 'sbas/exams.html' %} {% block navigation %} {{ block.super }} {% include 'generic/exam_overview_headers.html' %} {% endblock navigation %} {% block content %} {% load thumbnail %}

This exam will be available to take here (when active).

Questions in this Exam

{% for question in questions.all %}
Q{{ forloop.counter }}: {{ question.title }}
{{ question.stem|safe }}
Category: {{ question.category }}
  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 }}
Best answer
{% if question.best_answer %} {{ question.best_answer|stringformat:'s'|slice:":1"|upper }} {% else %} - {% endif %}
({{ question.get_correct_answer_stripped }})
{% endfor %}
{% endblock %}