diff options
author | Denise sur Lya <sekhmet@lya> | 2021-07-22 14:02:16 +0200 |
---|---|---|
committer | Denise sur Lya <sekhmet@lya> | 2021-07-22 14:02:16 +0200 |
commit | e4ec2d3d510d6138430c48d5dc699c10ff8dc463 (patch) | |
tree | 8ee7d1763405b8568add33e924014da37cc7b0f2 /templates/changelog.html | |
parent | f1e65b5e6bc5e0803f359f93c8e795a61f61b4a6 (diff) | |
download | oms-e4ec2d3d510d6138430c48d5dc699c10ff8dc463.tar.gz oms-e4ec2d3d510d6138430c48d5dc699c10ff8dc463.tar.zst oms-e4ec2d3d510d6138430c48d5dc699c10ff8dc463.zip |
petites améliorations graphiques, icône, etc
Diffstat (limited to 'templates/changelog.html')
-rw-r--r-- | templates/changelog.html | 25 |
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 | ||