{{ 'Order Confirmation'|t }} |
{{ 'Order #@number details:'|t({'@number': order_entity.getOrderNumber}) }}
|
{% block order_items %}
{% for order_item in order_entity.getItems %}
{{ order_item.getQuantity|number_format }} x
|
{{ order_item.label }}
{{ order_item.getTotalPrice|commerce_price_format }}
|
{% endfor %}
{% endblock %}
|
{% if (billing_information or shipping_information) %}
{% if shipping_information %}
{{ 'Shipping Information'|t }} |
{% endif %}
{% if billing_information %}
{{ 'Billing Information'|t }} |
{% endif %}
{% if shipping_information %}
{% block shipping_information %}
{{ shipping_information }}
{% endblock %}
|
{% endif %}
{% if billing_information %}
{% block billing_information %}
{{ billing_information }}
{% endblock %}
|
{% endif %}
{% if payment_method %}
{{ 'Payment Method'|t }} |
{% block payment_method %}
{{ payment_method }}
{% endblock %}
|
{% endif %}
{% endif %}
|
{{ 'Subtotal: @subtotal'|t({'@subtotal': totals.subtotal|commerce_price_format}) }}
|
{% for adjustment in totals.adjustments %}
{{ adjustment.label }}: {{ adjustment.total|commerce_price_format }}
|
{% endfor %}
{{ 'Order Total: @total'|t({'@total': order_entity.getTotalPrice|commerce_price_format}) }}
|
{% block additional_information %}
{{ 'Thank you for your order!'|t }}
{% endblock %}
|