{% extends "base_with_margins.html" %} {% block title %}Events{% endblock %} {% block content %}


Browse by month:
View events
{% if not show_upcoming %} {% if month_events %}

{{ CITY_VOCAB.EVENTS }}: {{first_date | date:"F Y"}}


{% for date, event_list in month_events %} {% include "partials/event_day.html" %} {% endfor %} {% else %}

No {{ CITY_VOCAB.EVENTS | lower }} to show

{% endif %} {% else %} {% if upcoming_events %}

Upcoming {{ CITY_VOCAB.EVENTS }}


{% for date, event_list in upcoming_events %} {% include "partials/event_day.html" %} {% endfor %} {% else %}

No Upcoming {{ CITY_VOCAB.EVENTS }}


{% endif %} {% endif %}

What are these {{ CITY_VOCAB.EVENTS | lower}}?

{{ ABOUT_BLURBS.EVENTS | safe }}

More on how City Council works »

{% endblock %} {% block extra_js %} {% endblock %}