{% extends "site_base.html" %} {% block head_title %}{{ title }}{% endblock %} {% block body_class %}two-choice-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.2 %} Correct!
{% include answer_template with question=previous_question.0 %} is {{ previous_question.2 }} {% else %} Incorrect
{% include answer_template with question=previous_question.0 %} is {{ previous_question.2 }}
(you said {{ previous_answer }}) {% endif %}
{% endif %}
{% csrf_token %}
{% include question_template with question=question.0 %}
{{ question.1.0 }}   {{ question.1.1 }}

definitely

possibly

don't know

possibly

definitely
{% endblock %}