blob: ed47f99ffb44f46012a7ced066cb87e3d69a2347 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% 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>
</div>
{% if loop.index == nblignes and table | length > nblignes %}
<hr>
<p><span class="bouton" onclick="affiche_cache('suite_changelog', this)">Afficher</span> le log des versions plus anciennes.</p>
<div id="suite_changelog">
{% endif %}
{% endfor %}
{% if table |length > nblignes %}
</div>
{% endif %}
{% endblock %}
|