{% endblock %}
{% block pagetitle %}{% trans "Event" %}{% endblock %}
{# Significant whitespace on line below #}
{% block title %}{% trans "Event" %}: {{ item.title }}{% endblock %}
{% block content %}
{{ item.title }}
{% if description %}
{{ description|safe|urlize|linebreaksbr }}
{% endif %}
{% if item.dt_start %}
{% trans "Starts:" %}
{% if item.dt_start|date:"H:i" != "00:00" %}
{{item.dt_start|date:"l j M Y \a\t H:i"}}
{% else %}
{{item.dt_start|date:"l j M Y"}}
{% endif %}
{% endif %}
{% if item.dt_end %}
{% trans "Ends:" %}
{% if item.dt_end|date:"H:i" != "00:00" %}
{{item.dt_end|date:"l j M Y \a\t H:i"}}
{% else %}
{{item.dt_end|date:"l j M Y"}}
{% endif %}
{% endif %}
{# Do not display the "last modified" date if we have dt_start #}
{% if not item.dt_start %}
{{ item.last_modified_local|date:"j M Y \a\t H:i" }}
{% endif %}
{# Significant whitespace on line below #}
{% if item.link %}
{% trans "Link:" %} {{ item.link }}
{% endif %}