aboutsummaryrefslogtreecommitdiff
path: root/templates/mention_list.html
diff options
context:
space:
mode:
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 %}