aboutsummaryrefslogtreecommitdiff
path: root/templates/mail/mail_timetable.txt
diff options
context:
space:
mode:
authorAlban Gruin2017-02-09 11:37:46 +0100
committerAlban Gruin2017-02-09 11:37:46 +0100
commit65eb38093246b6483a427639462d4e55abf7621c (patch)
treecb6e4959582af9e30a03a3435901f2e7014c77d0 /templates/mail/mail_timetable.txt
parent50f4e5d3277d611f3b9a662f436346e03f6e3996 (diff)
Affichage du type de cours dans l'emploi du temps
Diffstat (limited to 'templates/mail/mail_timetable.txt')
-rw-r--r--templates/mail/mail_timetable.txt2
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 %}