aboutsummaryrefslogtreecommitdiff
path: root/templates/timetable_email.txt
blob: dcc07d17c0537724d1446d50c5998e4cd4637328 (plain)
1
2
3
4
5
6
{% autoescape off %}{% for day in courses %}{{ 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 %}
{% for course in day %}
 * {{ course.name }}, 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 %}