{% load currency_filters i18n %}

{% trans 'Hello,' %}

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

{% trans 'Your order contains:' %}

{% 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 by clicking here{% endblocktrans %}

{% endif %}

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