{{ ux_icon('clarity:cog-line', {'class': 'w-5 mr-3 text-cyan-500'}) }} Général
Date de création :
{{ order.date_created|date('d/m/Y H:i')|replace({':':'h'}) }}
État :
{% set orderStatus = get_order_status(order.status) %}
{{ orderStatus.title }}
Client :
{% if customer|length < 1 %}
Non renseigné
{% else %}
{{ customer.first_name ~ ' ' ~ customer.last_name ~ ' ('~ customer.email ~ ')' }}
{% endif %}
Total :
{{ order.total }}€
Note :
{{ order.customer_note }}