{% extends "base.html" %}{% load i18n %} {% block title %}{% blocktrans %}Event: {{ event }}{% endblocktrans %}{% endblock %} {% block document %}

{% trans "Event" %}

{% trans "Event Details" %}

{% include "event_form_part.html" %}
{% csrf_token %}

{% trans "Notes" %}

{% with event.notes.all as notes %} {% if notes %} {% else %}

{% trans "None" %}

{% endif %} {% endwith %}

{% trans "Occurrences" %}

{% if event.occurrence_set.count %}
    {% for o in event.occurrence_set.all %}
  1. {{ o.start_time|date:"DATETIME_FORMAT" }} – {{ o.end_time|date:"DATETIME_FORMAT" }}
  2. {% endfor %}
{% else %} {% endif %}

{% trans "Add Occurrences" %}

{% include "recurring_form_part.html" %}
{% csrf_token %}
{% endblock %}