fnp
/
koed-quiz.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
1e0c76329b6e1fdfaf98b2aa2ae936d635a44e07
[koed-quiz.git]
/
koedquiz
/
templates
/
home.html
1
{% extends "base.html" %}
2
3
4
{% block "title" %}{{ quiz.name }}{% endblock %}
5
{% block "header" %}{{ quiz.name }}{% endblock %}
6
7
8
{% block "body" %}
9
10
<div>
11
{{ quiz.description|safe }}
12
</div>
13
14
<a class='big-button' href="{{ quiz.get_absolute_url }}">Start quiz!</a>
15
16
{% endblock %}