{% extends "base.html" %} {% load url from future %} {% load i18n %}{% csrf_token %} {% block title %}{% trans "Event Occurrence" %}{% endblock %} {% block document %}

{% trans "Event Occurrence" %}

{{ occurrence.title }} – {% with occurrence.start_time as st %} {{ st|date:"DATETIME_FORMAT" }}

{% endwith %}
{% trans "Event type" %}:
{{ occurrence.event.category }}
{% trans "Description" %}:
{{ occurrence.event.description|default:"None" }}
{% trans "Note(s)" %}:
{% with occurrence.event.notes.all as notes %} {% if notes %} {% else %}None {% endif %} {% endwith %}
{{ form }}
{% endblock %}