{% extends "email_base.html" %} {% load i18n %} {% block content %}

{{ event.type }} {% translate "added" %}: {{ event.title }}

{% with start_time=event.get_start_time end_time=event.get_end_time %} {% if start_time %}

{{ start_time|date:"D" }}, {% if not event.is_multi_day %} {{ start_time|date:"SHORT_DATE_FORMAT" }} {{ start_time|date:"TIME_FORMAT" }} – {{ end_time|date:"TIME_FORMAT" }} {% else %} {{ start_time|date:"SHORT_DATE_FORMAT" }} {% translate "to" %} {{ end_time|date:"SHORT_DATE_FORMAT" }} {% endif %}

{% endif %} {% endwith %}
{{ event.description }}
{% translate "Location" %}: {{ event.location }}
{% translate "View" %}
{% endblock %}