{% load currency_filters %}Hello,

We are pleased to confirm your order {{ order.number }} has been received and
will be processed shortly.

Your order contains:

{% for line in order.lines.all %} * {{ line.title }} - quantity: {{ line.quantity }} - price: {{ line.line_price_incl_tax|currency }}
{% endfor %}
Basket total: {{ order.basket_total_incl_tax|currency }}
Shipping: {{ order.shipping_incl_tax|currency }}
Order Total: {{ order.total_incl_tax|currency }}

Shipping address:

{% for field in order.shipping_address.active_address_fields %}  {{ field }}
{% endfor %}

{% if status_url %}
You can view the status of this order at the below URL:
{{ status_url }}
{% endif %}

The team
