footer added
[koed-quiz.git] / apps / quiz / templates / quiz / home.html
1 {% extends "quiz/base.html" %}
2 {% load i18n %}
3
4
5 {% block "title" %}{{ quiz.name }}{% endblock %}
6 {% block "header" %}{{ quiz.name }}{% endblock %}
7
8
9 {% block "body" %}
10
11 <div>
12 {{ quiz.description|safe }}
13 </div>
14
15 <a class='big-button' href="{{ quiz.get_absolute_url }}">{% trans "Start the test!" %}</a>
16
17 {% endblock %}