{# templates/event/index.html.twig #} {% extends 'base.html.twig' %} {% set navbar_is_transparent = false %} {% block title %}Événements{% endblock %} {% block body %}

Tous les événements

Retrouvez l’ensemble des sorties et activités à venir (et récentes).

Rafraîchir
{% if events is empty %}
Aucun événement pour le moment.
{% else %}
{% for event in events %}
{# ——— En-tête / Titre + badges ——— #}

{{ event.title }}

{# Type d’événement #} {% if event.type %} {{ event.type }} {% endif %} {# Visibilité membres #} {% if event.isMembersOnly ?? false %} Membres {% endif %} {# Statut de publication — gère “en attente d’approbation” #} {% set status = (event.status ?? '')|upper %} {% if status == 'PUBLISHED' %} Publié {% elseif status in ['REVIEW','PENDING','PENDING_APPROVAL','EN_ATTENTE','AWAITING'] %} En attente de validation {% elseif status == 'DRAFT' %} Brouillon {% else %} {% if status %} {{ status }} {% endif %} {% endif %}
{# ——— Métadonnées : dates, lieu ——— #}
  • Début : {{ event.startAt ? event.startAt|date('d/m/Y H:i') : '—' }} {% if event.endAt %} {{ event.endAt|date('d/m/Y H:i') }} {% endif %}
  • {% if event.locationName %}
  • {{ event.locationName }}
  • {% endif %} {# Optionnel: organisateur si existe #} {% if event.createdBy is defined and event.createdBy %}
  • Organisé par : {{ event.createdBy }}
  • {% endif %}
{# ——— Aforo / places disponibles ——— #} {% if event.maxParticipants ?? null %} {% set spots_left = event.spotsLeft() %} {% set pct = event.maxParticipants > 0 ? (((event.maxParticipants - spots_left) / event.maxParticipants) * 100)|round(0, 'ceil') : 0 %}
Places disponibles {{ spots_left }}/{{ event.maxParticipants }}
{% endif %} {# ——— Extrait (si tienes un campo description/contenu) ——— #} {% if event.description is defined and event.description %} {% set excerpt = event.description|striptags %}

{{ excerpt|length > 140 ? excerpt|slice(0,140) ~ '…' : excerpt }}

{% endif %} {# ——— CTA ——— #}
{# ——— Pied de carte (optionnel) ——— #}
{% endfor %}
{% endif %}
{% endblock %}