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

Event Detail

{{ event.title }}

{% if event.all_day %}

This is an all day event

{% endif %} {% if next_event %}

This event repeats {{ repeat | lower }}.

Next event date: {{ next_event.month }} {{ next_event.day }}, {{ next_event.year }} {{ event.start_date|date:"g:i a" }} - {{ event.end_date|date:"g:i a e" }} (today is: {% now "SHORT_DATE_FORMAT" %})

{% elif last_event %}

This was an event that repeated {{ repeat | lower }}.

The last event was on {{ last_event }}

{% else %}

When: {% if event.start_date.day == event.end_date.day %} {{ event.start_date }} - {{ event.end_date|date:"g:i a e" }}

{% else %} Start date: {{ event.start_date }}

End date: {{ event.end_date }}

{% endif %} {% 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.featured_image %}

{% endif %}

{{ event.description }}

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