1 {% extends "base.html" %}
3 {% load url from future %}
6 {% block "title" %}{{ question.quiz.name }}{% endblock %}
7 {% block "header" %}{{ question.quiz.name }}{% endblock %}
13 <h2>{{ question.title }}</h2>
14 {% if question.text %}
16 {{ question.text|safe }}
24 <form class='question' method='post'>
26 {{ form.answer.errors }}
30 <button>{% trans "Send answer" %}</button>
33 <a class='button' href='{{ previous_url }}'>{% trans "Back to last question" %}</a>
38 <a class='button' href='{{ valid_url }}'>{% trans "Back to my test" %}</a>
40 <a class='button' href='{% url "quiz" %}'>{% trans "Start from the beginning" %}</a>
48 {% if question.description %}
49 <div id='description'>
50 {{ question.description|safe }}