{% extends 'happenings/middle.html' %} {% load staticfiles %} {% block content %}
{{ event.description }}
{% if event.start_end_diff %} This is a {{ event.start_end_diff|add:"1" }} day event.Next event date: {{ next_event|date:"D F d, Y" }} {{ event.start_date|date:"g:i a" }} - {{ event.end_date|date:"g:i a e" }}{% if next_or_prev_cncl %} (CANCELLED){% endif %} {% elif last_event %} This was an event that repeated {{ repeat | lower }}.
The last event was on {{ last_event|date:"D F d, Y" }}{% if next_or_prev_cncl %} (CANCELLED){% endif %} {% else %}
When: {% if event_days %}
This event has been cancelled on the following day(s):
Location{{ event.location.all|pluralize }}:
{% for l in event.location.all %}
{{ l.name }}
{% if l.address_line_1 %}{{ l.address_line_1 }}
{% endif %}
{% if l.address_line_2 %}{{ l.address_line_2 }}
{% endif %}
{% if l.address_line_3 %}{{ l.address_line_3 }}
{% endif %}
{% if l.city %}{{ l.city }},{% endif %}
{% if l.state %}{{ l.state }}{% endif %}
{% if l.zipcode %}{{ l.zipcode }}
{% endif %}
{% if l.country %}{{ l.country }}
{% endif %}
{% endfor %}