{% if has_results or categories or tags or places or organisations or rimports %}
{% if categories %}
{% if categories.count > 1 %}
Retrouvez les événements correspondant aux catégories
{% else %}
Retrouvez les événements correspondant à la catégorie
{% endif %}
{% for c in categories %}{{ c | small_cat_no_contrast }}{% endfor %}
{% endif %}
{% if tags %}
{% if tags.count > 1 %}
Retrouvez les événements correspondant aux étiquettes
{% else %}
Retrouvez les événements correspondant à l'étiquette
{% endif %}
{% for t in tags %}{{ t | tag_button_link }}{% endfor %}
{% endif %}
{% if places %}
{% if places.count > 1 %}
Retrouvez les événements se déroulant dans les lieux
{% else %}
Retrouvez les événements se déroulant dans le lieu
{% endif %}
{% for p in places %}
{{ p.name }}
{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% if organisations %}
{% if organisations.count > 1 %}
Retrouvez les événements correspondant aux organisations
{% else %}
Retrouvez les événements correspondant à l'organisation
{% endif %}
{% for o in organisations %}
{{ o }}
{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% if rimports and user.is_authenticated %}
{% if rimports.count > 1 %}
Import récurrent correspondant à la recherche :
{% else %}
Imports récurrents correspondant à la recherche :
{% endif %}
{% for r in rimports %}
{{ r }}
{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% for obj in paginator_filter %}
{% include "agenda_culturel/single-event/event-in-flat-list-inc.html" with event=obj %}
{% endfor %}