{% extends 'base.html.twig' %} {% set navbar_is_transparent = false %} {% block title %}Mes sorties inscrites{% endblock %} {% block body %}
← Retour à mon compte

Mes sorties inscrites

{% if events is empty %}
Vous n’êtes inscrit(e) à aucune sortie pour le moment.
{% else %}
{% for e in events %}
{{ e.title }}

{{ e.startAt|date('d/m/Y H:i') }} {% if e.endAt %} – {{ e.endAt|date('d/m/Y H:i') }}{% endif %}

{% if e.locationName %}

{{ e.locationName }}

{% endif %} Voir détails
{% endfor %}
{% endif %}
{% endblock %}