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>
15 {{ question.text|safe }}
22 <form class='question' method='post'>
24 {{ form.answer.errors }}
28 <button>{% trans "Send answer" %}</button>
31 <a class='button' href='{{ previous_url }}'>{% trans "Back to last question" %}</a>
36 <a class='big-button' href='{{ valid_url }}'>{% trans "Back to my test" %}</a>
38 <a class='big-button' href='{% url "quiz" %}'>{% trans "Start from the beginning" %}</a>
46 <div id='description'>
47 {{ question.description|safe }}