{% extends 'base.html.twig' %} {% block title %}Historique — RepTrack{% endblock %} {% block body %}
HISTORIQUE
Toutes tes séances
{% if sessions|length == 0 %}
Aucune séance.
{% endif %} {% set current_month = "" %} {% for session in sessions %} {% set month = session.startedAt|date('F Y') %} {% if month != current_month %} {% set current_month = month %}
{{ month|upper }}
{% endif %}
{{ session.day.label }}
{{ session.startedAt|date('d/m/Y à H:i') }} {% if session.durationLabel %} · {{ session.durationLabel }}{% endif %}
{{ session.program.label }}
{% if session.isFinished %} {{ session.completedSeriesCount }} ✓ {% else %} EN COURS {% endif %}
{% endfor %} {% endblock %}