diff options
author | Alban Gruin | 2017-02-09 11:37:46 +0100 |
---|---|---|
committer | Alban Gruin | 2017-02-09 11:37:46 +0100 |
commit | 65eb38093246b6483a427639462d4e55abf7621c (patch) | |
tree | cb6e4959582af9e30a03a3435901f2e7014c77d0 /templates/mail | |
parent | 50f4e5d3277d611f3b9a662f436346e03f6e3996 (diff) |
Affichage du type de cours dans l'emploi du temps
Diffstat (limited to 'templates/mail')
-rw-r--r-- | templates/mail/mail_timetable.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/mail/mail_timetable.txt b/templates/mail/mail_timetable.txt index 376aac1..65b5c01 100644 --- a/templates/mail/mail_timetable.txt +++ b/templates/mail/mail_timetable.txt @@ -1,6 +1,6 @@ {% autoescape off %}{% for day in courses %}{% 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 %} {% for course in day %} - * {{ course.name }}, de {{ course.begin|date:"H:i" }} à {{ course.end|date:"H:i" }}{% if course.rooms.all|length > 0 %} + * {{ course.name }} ({{ course.type }}), de {{ course.begin|date:"H:i" }} à {{ course.end|date:"H:i" }}{% if course.rooms.all|length > 0 %} Salle{% if course.rooms.all|length > 1 %}s{% endif %} {% for room in course.rooms.all %}{{ room }} {% endfor %}{% endif %} {% endfor %} {% endfor %}{% endautoescape %} |