bootstrap_barrio-5.1.3/templates/commerce/checkout/commerce-checkout-completion-message.html.twig
templates/commerce/checkout/commerce-checkout-completion-message.html.twig
{#
/**
* @file
* Default theme implementation for the completion message.
*
* Available variables:
* - order_entity: The order entity.
* - message: The completion message.
* - payment_instructions: The payment instructions, if provided.
*
* @ingroup themeable
*/
#}
<div class="checkout-complete">
{{- message -}}
{% if payment_instructions %}
<div class="checkout-complete__payment-instructions">
<h2>{{ 'Payment instructions'|t }}</h2>
{{ payment_instructions }}
</div>
{% endif %}
</div>
