{% 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 }}

{% if previous.previous_outcome %}
{% else %}
{% endif %}

Your answer was {{ previous.previous_outcome|yesno:"correct,incorrect" }}

{% include 'correct_answer.html' %}

Explanation:

{{ previous.previous_question.explanation }}


{% endif %}
{% if question %}

Question category: {{ question.category }}

{{ question.content }}

{% if question_type.TF_Question %} {% include 'answers_for_tf_question.html' %} {% endif %} {% if question_type.MCQuestion %} {% include 'answers_for_mc_question.html' %} {% endif %}
{% endif %}
{% endblock %}