summaryrefslogtreecommitdiff
path: root/templates/changelog.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/changelog.html')
-rw-r--r--templates/changelog.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/changelog.html b/templates/changelog.html
new file mode 100644
index 0000000..24447f6
--- /dev/null
+++ b/templates/changelog.html
@@ -0,0 +1,17 @@
1{% extends "base.html" %}
2{% block contenu %}
3<h2>Suivi des versions</h2>
4
5{% for ligne in table %}
6<div class="version">
7<h3>{{ ligne[0] }}</h3>
8<div class="date">Le {{ ligne[1] }}</div>
9
10<p>{{ ligne[2]|safe }}</p>
11</div>
12{% endfor %}
13
14
15
16
17{% endblock %}