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

{% trans "The previous question" %}:

{{ previous.previous_question }}

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

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

{% include 'correct_answer.html' %}

{% trans "Explanation" %}:

{{ previous.previous_question.explanation }}


{% endif %}
{% if question %} {% if progress %}
{% trans "Question" %} {{ progress.0|add:1 }} {% trans "of" %} {{ progress.1 }}
{% endif %}

{% trans "Question category" %}: {{ question.category }}

{{ question.content }}

{% if question.figure %} {{ question.content }} {% endif %}
{% csrf_token %}
{% endif %}
{% endblock %}