{% extends "oscar/communication/emails/base.html" %} {% load currency_filters i18n %} {% block tbody %}

{% 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:' %}
{% for line in order.lines.all %} {% endfor %}
{{ line.title }} × {{ line.quantity }} {{ line.line_price_incl_tax|currency:order.currency }}
{% trans 'Basket total:' %} {{ order.basket_total_incl_tax|currency:order.currency }}
{% trans 'Shipping:' %} {{ order.shipping_incl_tax|currency:order.currency }}
{% trans 'Order Total:' %} {{ order.total_incl_tax|currency:order.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 %} {% endblock %}