subject = "{{ 'offline.mall::mail.admin.checkout_failed.subject' | trans({number: order.order_number}) }}"
description = "Sent to the shop admin when a checkout has failed"
==
{{ 'offline.mall::mail.admin.checkout_failed.not_processed' | trans() }}
{% if order.payment_log %}
## {{ 'offline.mall::mail.admin.checkout_failed.error_details' | trans() }}
{{ 'offline.mall::mail.admin.checkout_failed.payment_id' | trans() }}:
{{ order.payment_log.id }}
{{ 'offline.mall::mail.admin.checkout_failed.error' | trans() }}:
{{ order.payment_log.message }}
{% endif %}
{% partial 'mall.order.addresses' order=order %}
## {{ 'offline.mall::mail.common.order_details' | trans() }}
{% partial 'mall.order.table' order=order %}
{% partial 'button' url=order_url type='primary' body %}
{{ 'offline.mall::mail.common.view_order_in_backend' | trans() }}
{% endpartial %}