diff options
author | Alban Gruin | 2017-01-29 11:56:35 +0100 |
---|---|---|
committer | Alban Gruin | 2017-01-29 11:56:35 +0100 |
commit | 60cb0e3946b258deb62cbeb82a29337ac7fe2b4a (patch) | |
tree | fb2b7895ef76b077720ce7d7513395946540ad56 /templates/timetable.html | |
parent | b4ede7e76773d0ca39d4cc999d0ddc353151ac5d (diff) |
Le nom des jours apparait avec une majuscule au débutv0.2.2stable/0.2.z
Diffstat (limited to 'templates/timetable.html')
-rw-r--r-- | templates/timetable.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/timetable.html b/templates/timetable.html index 9d05be6..882e163 100644 --- a/templates/timetable.html +++ b/templates/timetable.html @@ -6,7 +6,7 @@ <h2>{{ group.timetable.name }} – {{ group.name }} – Semaine {{ week }}</h2> <p>Dernière mise à jour le {{ last_update|date:"l j F o" }} à {{ last_update|date:"H:i" }}</p>{% for day in courses %} <section> - <h3>{{ day.0.begin|date:"l j F o" }} – de {{ day.0.begin|date:"H:i" }} à {% with day|last as last %}{{ last.end|date:"H:i" }}{% endwith %}</h3> + <h3>{% filter title %}{{ day.0.begin|date:"l j F o" }}{% endfilter %} – de {{ day.0.begin|date:"H:i" }} à {% with day|last as last %}{{ last.end|date:"H:i" }}{% endwith %}</h3> <ul>{% for course in day %} <li class="course"><b>{{ course.name }}</b>, de {{ course.begin|date:"H:i" }} à {{ course.end|date:"H:i" }}{% if course.rooms.all|length > 0 %}<br /><em>Salle{% if course.rooms.all|length > 1 %}s{% endif %} {% for room in course.rooms.all %}{{ room }} {% endfor %}</em>{% endif %}</li>{% endfor %} </ul> |