{% load currency_filters i18n %}{% blocktrans %}Hello,

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

{% trans 'Your order contains:' %}

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

{% trans 'Shipping address:' %}

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

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

{% blocktrans %}The team{% endblocktrans %}
