{# /** * @file * Template for orders in the 'user' view mode. * * Available variables: * - attributes: HTML attributes for the wrapper. * - order: The rendered order fields. * Use 'order' to print them all, or print a subset such as * 'order.order_number'. Use the following code to exclude the * printing of a given field: * @code * {{ order|without('order_number') }} * @endcode * - order_entity: The order entity. * * @ingroup themeable */ #}
{{ order.mail }} {% if order.shipping_information %}
{{ 'Shipping information'|t }}
{{ order.shipping_information }}
{% endif %} {% if order.billing_information %}
{{ 'Billing information'|t }}
{{ order.billing_information }}
{% endif %}
{{ order.completed }} {{ order.placed }} {{ order.state }} {{ order.order_items }} {{ order.total_price }}