{% extends "base_admin.html.twig" %} {% block body %}
Nom : {% if hasUser %} {{ registration.user.fullName }} {% else %} {{ (prenomField.value ?? '') ~ ' ' ~ (nomField.value ?? '') }} {% endif %}
Email : {% if hasUser %} {{ registration.user.email }} {% else %} {{ emailField.value ?? '—' }} {% endif %}
Date : {{ registration.createdAt|date('d/m/Y H:i') }}
Statut :
Total : {{ registration.totalAmount|number_format(2, ',', ' ') }} €
{% endif %}