aboutsummaryrefslogtreecommitdiff
path: root/templates/mention_list.html
diff options
context:
space:
mode:
authorAlban Gruin2017-09-09 16:39:30 +0200
committerAlban Gruin2017-09-09 16:39:30 +0200
commit5c96538dfe708c4429d13397caedeb0b84a65b5a (patch)
tree855a9f31cb40a35805129d4f9edd3eac274cc11f /templates/mention_list.html
parentab9df7a174e2debbf9c644c8ec3e2127eeeaa3cf (diff)
parent60ea5a0e2a5f61f7f764bcf01aafb362781c16da (diff)
Merge branch 'stable/0.9.z' into prod/pa1ch/0.y.z
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..71cfaac
--- /dev/null
+++ b/templates/mention_list.html
@@ -0,0 +1,14 @@
+{% extends "index.html" %}
+
+{% block title %}{{ year }} – {% endblock %}
+
+{% block body %}
+ <h3>{{ year }} &ndash; Choisissez votre mention</h3>
+ <ul>
+{% for timetable in timetables %}
+ <li><a href="{% url "groups" year.slug timetable.slug %}">{{ timetable }}</a></li>
+{% empty %}
+ <p>Aucun emploi du temps à afficher</p>
+{% endfor %}
+ </ul>
+{% endblock %}