1 {% extends "quiz/base.html" %}
5 {% block "title" %}{{ question.quiz.name }}{% endblock %}
6 {% block "header" %}{{ question.quiz.name }}{% endblock %}
12 <h2>{{ question.title }}</h2>
13 {% if question.text %}
15 {{ question.text|safe }}
23 <form class='question' method='post'>
25 {{ form.answer.errors }}
29 <button>{% trans "Send answer" %}</button>
32 <a class='button' href='{{ previous_url }}'>{% trans "Back to last question" %}</a>
37 <a class='button' href='{{ valid_url }}'>{% trans "Back to my test" %}</a>
39 <a class='button' href='{% url "quiz" %}'>{% trans "Start from the beginning" %}</a>
47 {% if question.description %}
48 <div id='description'>
49 {{ question.description|safe }}