{% extends 'happenings/middle.html' %} {% load staticfiles %} {% block content %}

{{ event.title }}

{{ event.description }}

{% if event.start_end_diff %} This is a {{ event.start_end_diff|add:"1" }} day event.
{% endif %} {% if next_event %} This event repeats {{ repeat | lower }}.

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 %}

{% else %} {{ event.start_date|date:"D F d, Y" }} - {{ event.end_date|date:"g:i a e" }} {% if this_cncl %} (CANCELLED){% endif %} {% endif %} {% endif %} (today is: {% now "D M d, Y" %})

{% if cncl_days %}

This event has been cancelled on the following day(s):

{% endif %} {% if event.location.all %}

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 %}

{% endif %} {% if event.categories.all %} Categor{{ event.categories.all|pluralize:"y,ies" }}: {% endif %} {% if event.tags.all %} Tag{{ event.tags.all|pluralize }}: {% endif %} {% endblock content %}