{% extends "eventcalendar/base.html" %} {% load static from staticfiles %} {% load i18n %} {% block extra_head %} {% endblock %} {% block body %}

Upcoming Events

{% include "_widgets/_calendar_pagination.html" %}
{# Just to offset the closing div in the ifchanged block #} {% for occurrence in page_obj %} {% ifchanged %}

{{ occurrence.start_time|date:"l F j, Y" }}

{% endifchanged %} {% include "_widgets/_occurrence_tile.html" with object=occurrence include_date=True %} {% if forloop.last %}
{% endif %} {% endfor %} {% endblock %}