{% extends 'base.html.twig' %} {% block title %}Séance — RepTrack{% endblock %} {% block body %}
{{ session.day.label|upper }}
{{ session.startedAt|date('d/m/Y à H:i') }} {% if session.durationLabel %} · Durée {{ session.durationLabel }}{% endif %}
{{ session.program.label }}
{{ session.completedSeriesCount }}
SÉRIES
{% if session.durationLabel %}
{{ session.durationLabel }}
DURÉE
{% endif %}
{% set checkedSerieIds = [] %} {% for log in session.setLogs %} {% set checkedSerieIds = checkedSerieIds|merge([log.serie.id]) %} {% endfor %} {% for exercise in session.day.exercises %}
{{ exercise.name }}
{% for serie in exercise.series %}
{% if serie.id in checkedSerieIds %} {% endif %}
Série {{ serie.number }} · {{ serie.reps }}
{% endfor %}
{% endfor %} ← Retour historique {% endblock %}