{% extends "base.html.twig" %} {% block body %} {% block nav %}{{ parent() }}{% endblock %}
{% if payment_status == "paid" %}

{{'payment.valid'|trans}}

{% else %}

{{'payment.invalid'|trans}}

{% endif %}

{{ ux_icon('material-symbols:star',{width:64,height:64}) }}

{{ prestation.date|format_datetime('full', 'short', locale: app.session.get('_locale')) }}

{# #} {% for product in prestation.products %} {# #} {% endfor %}
{{ 'table.name'|trans }}Description{{ 'table.duration'|trans }} {{ 'table.price'|trans }}
{{ product.name|trans }}{{ product.description|trans }}{{ product.duree }} min {{ (product.price / 100)|number_format(2, '.', ',') }} €

{{ prestation.totalTime }} min - {{ (prestation.total / 100)|number_format(2, '.', ',') }} €

{% endblock %}