fnp
/
koed-quiz.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
pretty much working version
[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 %}