summaryrefslogtreecommitdiff
path: root/templates/changelog.html
blob: 7ba96cd7a53767ae5357ba55f5dcc1c2609e9885 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% block contenu %}
<h2>Suivi des versions</h2>

{% for ligne in table %}
<div class="version">
<h3>{{ ligne[0] }}</h3>
<div class="date">Le {{ ligne[1] }}</div>

<div class="contenu_changelog">
{{ ligne[2]|safe }}
</div>
{% endfor %}




{% endblock %}