blob: 24447f69cd1ae159351dfdfbb383d0869f5dbab4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% 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>
<p>{{ ligne[2]|safe }}</p>
</div>
{% endfor %}
{% endblock %}
|