{% extends "base.html" %} {% load quiz_tags %} {% block title %} {{ quiz.title }} {% endblock %} {% block description %} {{ quiz.title }} - {{ quiz.description }} {% endblock %} {% block content %}
{% if previous %}

The previous question:

{{ previous.previous_question }}

{% ifequal previous.previous_outcome 'correct' %}
{% else %}
{% endifequal %}

Your answer was {{ previous.previous_outcome }}

{% correct_answer previous %}

Explanation:

{{ previous.previous_question.explanation }}


{% endif %}
{% if question %}

Question category: {{ question.category }}

{{ question.content }}

{% ifequal question_type 'TF_Question' %} {% include 'answers_for_tf_question.html' %} {% endifequal %} {% ifequal question_type 'MCQuestion' %} {% answers_for_mc_question question %} {% endifequal %}
{% endif %}
{% endblock %}