diff options
author | Alban Gruin | 2017-09-07 22:40:57 +0200 |
---|---|---|
committer | Alban Gruin | 2017-09-07 22:40:57 +0200 |
commit | 36b4c60aacae827b5ff8b6125bdfd70d7cf2a3a0 (patch) | |
tree | ea056fedf7819b9342e02d44b48f0dd89229deee /templates/timetables_list.html | |
parent | f18b2cc4f4aa7b2ed2d7801c19ddf75acbb6abc2 (diff) |
J’ai fait des trucs mais je me suis rendu compte que c’est pas
terrible, du coup je fais un commit tout pété mais ça va vite changer
vous inquiétez pas.
Diffstat (limited to 'templates/timetables_list.html')
-rw-r--r-- | templates/timetables_list.html | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/templates/timetables_list.html b/templates/timetables_list.html deleted file mode 100644 index d4c3579..0000000 --- a/templates/timetables_list.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "index.html" %} - -{% block body %}{% for timetable in timetables %} - <section id="{{ timetable.slug }}"> - <h3><a href="{{ timetable.url }}">{{ timetable.name }}</a></h3> - <ul>{% for group in groups %}{% if group.timetable.id == timetable.id %} - <li><a class="text"{% if group.weeks is not None %} href="{% url "timetable" timetable.slug group.slug %}"{% endif %}>{{ group.name }}</a> – {% for week in group.weeks %}<a href="{% url "timetable" timetable.slug group.slug week.year week|dt_week %}">{{ week|dt_prettyprint }}</a> {% empty %}<em>aucun cours</em>{% endfor %}</li>{% endif %}{% endfor %} - </ul> - </section>{% endfor %}{% endblock %} |