{% extends "email/base.html.twig" %} {% block body %}

{{ 'email.order.thank_you'|trans }}

EBI - {{ prestation.user.profil.parentChambre.value }} - {{ prestation.user.profil.chambre.numero }}

{{ prestation.user.profil.chambre.studioType.value }}

{{ 'email.order.visit_date'|trans }} {{ prestation.date|format_datetime('full', 'short') }}

{{ prestation.invoiceNumber }} | {{ prestation.invoiceDate|date('d/m/Y') }}

{{ prestation.totalTime }} min

{{ (prestation.total / 100)|number_format(2, '.', ',') }} € TTC

{% for product in prestation.products %} {% endfor %}
{{ 'table.service'|trans }} {{ 'table.description'|trans }} {{ 'table.duration'|trans }} ({{ 'prestation.minutes'|trans }}) {{ 'table.price'|trans }} (€ TTC)
{{ product.name|trans }} {{ product.description|trans }} {{ product.duree }} {{ (product.price / 100)|number_format(2, '.', ',') }}
{% endblock %}