{% extends "calendar/_base.html" %} {%- from "macros/box.html" import m_box_content, m_box_menu -%} {%- from "macros/form.html" import m_field -%} {%- block content %} {% call m_box_content() %} {# TODO #}

{{ _("Back to calendar") }}

{{ event.title }}

{{ _("Start") }}: {{ event.start | datetimeformat }}

{{ _("End") }}: {{ event.end | datetimeformat }}

{% if event.location %}

{{ event.location }}

{% endif %}
{{ event.description|safe }}
{% if event.url %} {{ _('More information') }}: {{ event.url }} {% endif %}
{% endcall %} {%- endblock %}