{% extends "site_base.html" %} {% block head_title %}{{ title }}{% endblock %} {% block body_class %}short-answer-quiz{% endblock %} {% block body %}

{{ title }}{% if question_number %}question {{ question_number }}/{{ num_questions }}{% endif %}

{% if description %}
{{ description }}
{% endif %}
{% if previous_question %}
{% if previous_answer == previous_question.1 %} Correct!
{% include answer_template with question=previous_question.0 %} is {{ previous_question.1 }} {% else %} Incorrect
{% include answer_template with question=previous_question.0 %} is {{ previous_question.1 }}
(you said {{ previous_answer }}) {% endif %}
{% endif %}
{% csrf_token %}
{{ question.0 }}
{% endblock %} {% block extra_script %} {% endblock %}