{% extends 'happenings/middle.html' %} {% load staticfiles %} {% block content %}
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 %}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 %}
{{ event.description }}
{% if event.categories.all %} Categor{{ event.categories.all|pluralize:"y,ies" }}: