diff options
author | Denise sur Lya <sekhmet@lya> | 2020-06-16 23:04:11 +0200 |
---|---|---|
committer | Denise sur Lya <sekhmet@lya> | 2020-06-16 23:04:11 +0200 |
commit | a46e126967995e8483b4da81a1f3b586266ee86d (patch) | |
tree | 248e6b382ffe5ac1462ea1266ece83859248078a /templates/changelog.html | |
parent | 66a3e38cc085dc000776d3e2ad3acd7ef57068a3 (diff) | |
download | oms-a46e126967995e8483b4da81a1f3b586266ee86d.tar.gz oms-a46e126967995e8483b4da81a1f3b586266ee86d.tar.zst oms-a46e126967995e8483b4da81a1f3b586266ee86d.zip |
ajout du "changelog", dossiers pour les données, et diverses choses
Diffstat (limited to 'templates/changelog.html')
-rw-r--r-- | templates/changelog.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/changelog.html b/templates/changelog.html new file mode 100644 index 0000000..24447f6 --- /dev/null +++ b/templates/changelog.html | |||
@@ -0,0 +1,17 @@ | |||
1 | {% extends "base.html" %} | ||
2 | {% block contenu %} | ||
3 | <h2>Suivi des versions</h2> | ||
4 | |||
5 | {% for ligne in table %} | ||
6 | <div class="version"> | ||
7 | <h3>{{ ligne[0] }}</h3> | ||
8 | <div class="date">Le {{ ligne[1] }}</div> | ||
9 | |||
10 | <p>{{ ligne[2]|safe }}</p> | ||
11 | </div> | ||
12 | {% endfor %} | ||
13 | |||
14 | |||
15 | |||
16 | |||
17 | {% endblock %} | ||