{# /** * @file * Default theme implementation for the completion message. * * Available variables: * - order_entity: The order entity. * - payment_instructions: The payment instructions, if provided. * * @ingroup themeable */ #}
{{ 'Your order number is @number.'|t({'@number': order_entity.getOrderNumber}) }}
{{ 'You can view your order on your account page when logged in.'|t }}
{% if payment_instructions %}

{{ 'Payment instructions'|t }}

{{ payment_instructions }}
{% endif %}