{% 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 ti in calendar.time_intervals_list %}
{% picto_from_name "chevrons-up" %}

{{ ti.name }}

{{ ti.date }}

{% if ti.events|length > 1 %}

Résumé

    {% for event in ti.events %}
  • {{ event.category | circle_cat:event.has_recurrences }} {% if event.start_time %} {{ event.start_time }} {% endif %} {{ event|picto_status }} {{ event.title }}
  • {% endfor %}
{% endif %}
{% if ti.events|length > 1 %}

Événements

{% endif %} {% with indexti=ti.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 %}
{% endfor %} {% endcache %} {% endwith %} {% endblock %}