{% if commerce_config.logo_url %}
{% endif %}
{{ commerce_config.project_title }}
{% if order.status == "paid" %}
Payment confirmed
Your payment has been confirmed successfully.
Thank you. Your order is paid and confirmed.
{% else %}
Checkout received
Checkout redirect received. Payment is confirmed only by verified webhook.
Payment is not confirmed yet. Confirmation happens after the verified payment webhook is processed.
{% endif %}
{% if order %}
Order
Order ID: {{ order.public_id }}
Status: {{ order.status }}
Product: {{ order.product_slug }}
Amount: {{ order.currency }} {{ "%.2f"|format(order.amount_cents / 100) }}
{% else %}No order ID was supplied in the redirect URL.
{% endif %}