]> git.immae.eu Git - perso/Denise/oms.git/blob - templates/changelog.html
Petits détails
[perso/Denise/oms.git] / templates / changelog.html
1 {% extends "base.html" %}
2 {% block contenu %}
3
4 <h2>Suivi des versions</h2>
5
6 {% for ligne in table %}
7 <div class="version">
8 <h3>{{ ligne[0] }}</h3>
9 <div class="date">Le {{ ligne[1] }}</div>
10
11 <div class="contenu_changelog">
12 {{ ligne[2]|safe }}
13 </div>
14
15 </div>
16 {% if loop.index == nblignes and table | length > nblignes %}
17 <hr>
18 <p><span class="bouton" onclick="affiche_cache('suite_changelog', this)">Afficher</span> le log des versions plus anciennes.</p>
19 <div id="suite_changelog">
20 {% endif %}
21
22 {% endfor %}
23 {% if table |length > nblignes %}
24 </div>
25 {% endif %}
26
27
28
29 {% endblock %}