{% extends 'base.html.twig' %} {% block title %}Mes objectifs – EOS{% endblock %} {% block body %}

Plafond & Plancher

+ Nouvel objectif
{% if targets is empty %}
🎯 Aucun objectif défini pour l'instant.
Définir mes objectifs
{% else %} {# Objectif actif en avant #} {% for target in targets %} {% if target.isOpen() %}
Objectif en cours
{{ target.targetCalories }}kcal
Plafond calorique
{{ target.targetProteins }}g
Plancher protéique
Actif depuis le {{ target.validFrom|date('d/m/Y') }}
{% endif %} {% endfor %} {# Historique #}

Historique

{% for target in targets %} {% endfor %}
Plafond (kcal) Plancher (g) Actif depuis Jusqu'au Statut
{{ target.targetCalories }} {{ target.targetProteins }} {{ target.validFrom|date('d/m/Y') }} {{ target.validUntil ? target.validUntil|date('d/m/Y') : '–' }} {% if target.isOpen() %} Actif {% else %} Archivé {% endif %}
{% endif %} {% endblock %}