aboutsummaryrefslogtreecommitdiff
path: root/templates/mention_list.html
diff options
context:
space:
mode:
authorAlban Gruin2017-09-07 22:22:46 +0200
committerAlban Gruin2017-09-07 22:22:46 +0200
commitf18b2cc4f4aa7b2ed2d7801c19ddf75acbb6abc2 (patch)
treebcff554a2e98460075780e339141f7adf289704c /templates/mention_list.html
parenta79e87a3ecfd505846c04f7949b1036a102430ed (diff)
Remplacement de la page d’acceuil par la liste des années, menant sur
une liste de mentions, puis une liste de groupes, etc etc.
Diffstat (limited to 'templates/mention_list.html')
-rw-r--r--templates/mention_list.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/mention_list.html b/templates/mention_list.html
new file mode 100644
index 0000000..3c455af
--- /dev/null
+++ b/templates/mention_list.html
@@ -0,0 +1,14 @@
+{% extends "index.html" %}
+
+{% block title %}{{ year }} – {% endblock %}
+
+{% block body %}
+ <h3>Choisissez votre mention</h3>
+ <ul>
+{% for timetable in timetables %}
+ <li><a href="#">{{ timetable.name }}</a></li>
+{% empty %}
+ <p>Aucun emploi du temps à afficher</p>
+{% endfor %}
+ </ul>
+{% endblock %}