summaryrefslogtreecommitdiff
path: root/templates/changelog.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/changelog.html')
-rw-r--r--templates/changelog.html25
1 files changed, 18 insertions, 7 deletions
diff --git a/templates/changelog.html b/templates/changelog.html
index 7ba96cd..ed47f99 100644
--- a/templates/changelog.html
+++ b/templates/changelog.html
@@ -1,17 +1,28 @@
1{% extends "base.html" %} 1{% extends "base.html" %}
2{% block contenu %} 2{% block contenu %}
3
3<h2>Suivi des versions</h2> 4<h2>Suivi des versions</h2>
4 5
5{% for ligne in table %} 6{% for ligne in table %}
6<div class="version"> 7 <div class="version">
7<h3>{{ ligne[0] }}</h3> 8 <h3>{{ ligne[0] }}</h3>
8<div class="date">Le {{ ligne[1] }}</div> 9 <div class="date">Le {{ ligne[1] }}</div>
9 10
10<div class="contenu_changelog"> 11 <div class="contenu_changelog">
11{{ ligne[2]|safe }} 12 {{ ligne[2]|safe }}
12</div> 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
13{% endfor %} 22{% endfor %}
14 23{% if table |length > nblignes %}
24</div>
25{% endif %}
15 26
16 27
17 28