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


{% if select_events %}

{{ CITY_VOCAB.EVENTS }} in {{select_date}}


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

Upcoming {{ CITY_VOCAB.EVENTS }}


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

No {{ CITY_VOCAB.EVENTS }}

Search for a month and year{% if USING_NOTIFICATIONS %}, or subscribe and receive alerts about upcoming {{ CITY_VOCAB.EVENTS }}{% endif %}.

{% endif %}


{% include 'partials/events_info_blurb.html' %}
{% endblock %} {% block extra_js %} {% if USING_NOTIFICATIONS %} {% endif %} {% endblock %}