Set locale to en_GB for dates in emails
[cds-indico.git] / indico / modules / rb / templates / emails / reservations / reminders / reservation_digest.txt
blobb96039a723d93e10499d00dd204189821fb403ca
1 {% extends 'rb/emails/base_email.txt' %}
2 {% block recipient %}{{ owner.first_name if owner else 'user' }}{% endblock %}
4 {% block email_body -%}
5 This is a reminder digest about a weekly booking under your name:
7 Room: {{ reservation.room.name }}
8 Time: {{ reservation.start_dt | format_time(locale='en_GB') }} - {{ reservation.end_dt | format_time(locale='en_GB') }}
9 Reason: {{ reservation.booking_reason }}
11 Days:
12 {%- for occ in occurrences %}
13   * {{ occ.start_dt | format_date(locale='en_GB') }}
14 {%- endfor %}
16 If you don't need to use the room some of these days, please cancel them on this page:
17 {{ reservation.details_url }}
18 {%- endblock %}