Django 1.6
[koed-quiz.git] / apps / quiz / templates / quiz / result_detail.html
1 {% extends "quiz/base.html" %}
2 {% load i18n %}
3
4
5 {% block "title" %}{{ result.quiz.name }}{% endblock %}
6 {% block "header" %}{{ result.quiz.name }}{% endblock %}
7
8
9 {% block "body" %}
10
11 <h2>{{ result.title }}</h2>
12
13 {% if result.text %}
14     <div>
15     {{ result.text|safe }}
16     </div>
17 {% endif %}
18
19
20
21 {% if valid %}
22     {% if previous_url %}
23         <a class='button' href='{{ previous_url }}'>{% trans "Back to last question" %}</a>
24     {% endif %}
25 {% else %}
26     {% if valid_url %}
27         <a class='button' href='{{ valid_url }}'>{% trans "Back to my test" %}</a>
28     {% endif %}
29 {% endif %}
30
31
32 <a class='button' href='{% url "quiz" %}'>{% trans "Start from the beginning" %}</a>
33
34 {% endblock %}