{% extends '@EasyAdmin/layout.html.twig' %} {% block content_title %} Ajouter un paiement pour {{ user.nom }} {{ user.prenom }} {% endblock %} {% block main %}
| Type | Montant | Forfaits concernés |
|---|---|---|
| {{ payment.type }} | {{ payment.valeur|number_format(2, ',', ' ') }} € | {% if payment.forfaits|length > 0 %} {% for forfait in payment.forfaits %} {{ forfait.nom }} {% endfor %} {% else %} Aucun forfait associé {% endif %} |