{% extends "base.html" %} {% load url from future %} {% block title %}Event: {{ event }}{% endblock %} {% block main_content %}

Swingtime Event

Event Details

{% include "swingtime/event_form_part.html" %}

Notes

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

None

{% endif %} {% endwith %}

Occurrences

{% if event.occurrence_set.count %}
    {% for o in event.occurrence_set.all %}
  1. {{ o.start_time|date:"l, F jS, Y P" }} – {{ o.end_time|date:"l, F jS, Y P" }}
  2. {% endfor %}
{% else %} {% endif %}

Add Occurrences

{% include "swingtime/recurring_form_part.html" %}
{% endblock %}