{% extends "quiz/base.html" %} {% load i18n %} {% block "title" %}{{ question.quiz.name }}{% endblock %} {% block "header" %}{{ question.quiz.name }}{% endblock %} {% block "body" %}

{{ question.title }}

{% if question.text %}
{{ question.text|safe }}
{% endif %}
{% csrf_token %} {{ form.answer.errors }} {{ form.answer }} {% if valid %} {% if previous_url %} {% trans "Back to last question" %} {% endif %} {% else %} {% if valid_url %} {% trans "Back to my test" %} {% else %} {% trans "Start from the beginning" %} {% endif %} {% endif %}
{% if question.description %}
{{ question.description|safe }}
{% endif %} {% endblock %}