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

{{ question.title }}

{{ question.text|safe }}
{% 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 %}
{{ question.description|safe }}
{% endblock %}