{% load i18n %}{% for slot in create %}{% blocktrans with title=slot.submission.title location=slot.room.name start=slot.start|date:"SHORT_DATETIME_FORMAT" %}
- Your session “{{ title }}” will take place at {{ start }} in {{ location }}{% endblocktrans %}{% if slot.room.speaker_info %} ({{ slot.room.speaker_info }}){% endif %}.{% endfor %}{% for slot in update %}{% blocktrans with title=slot.submission.title location=slot.new_room start=slot.new_start|date:"SHORT_DATETIME_FORMAT" %}
- Your session “{{ title }}” has been moved to {{ start }} in {{ location }}{% endblocktrans %}{% if new_info %}({{ new_info }}){% endif %}.
{% endfor %}
