aboutsummaryrefslogtreecommitdiff
path: root/templates/timetable_email.txt
blob: f8a4037c1fda4d12caf9038e5366a41d859b4f73 (plain)
1
2
3
4
5
6
7
8
9
{% autoescape off %}{{ subscription.group.timetable.name }} - {{ subscription.group.name }} - Semaine {{ week }}

{% 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 %}