{% extends "agenda_culturel/page.html" %} {% load i18n %} {% load cache %} {% load cat_extra %} {% load event_extra %} {% load utils_extra %} {% load static %} {% load i18n %} {% block entete_header %} {% css_categories %} {% endblock %} {% block title %}{% block og_title %}Événements à venir{% endblock %}{% endblock %} {% block body-class %}a-venir{% endblock %} {% block content %} {% get_current_language as LANGUAGE_CODE %} {% with cache_timeout=user.is_authenticated|yesno:"30,600" %} {% cache cache_timeout upcoming user.is_authenticated calendar.firstdate filter.to_str LANGUAGE_CODE %}

Événements à venir

{% include "agenda_culturel/filter-inc.html" with filter=filter %}
{% for cd in calendar.calendar_days_list %}
{% picto_from_name "chevrons-up" %}

{{ cd.date }}

{% if cd.events|length > 0 %}
{% for ti in cd.get_time_intervals %} {% if ti.events|length > 0 %}

{{ ti.short_name }} {% picto_from_name "chevrons-down" %}

{% endif %} {% endfor %}
{% else %} Aucun événement {% endif %}
{% for ti in cd.get_time_intervals %} {% if ti.events|length > 0 %}
{% picto_from_name "chevron-up" %}

{{ ti.name }}

{{ ti.date }}

{% with indexti=cd.id %} {% for event in ti.events %} {% include "agenda_culturel/single-event/event-in-upcoming-inc.html" with event=event filter=filter day=day indexti=indexti %} {% endfor %} {% endwith %}
{% endif %} {% endfor %} {% endfor %} {% endcache %} {% endwith %} {% endblock %}