{% load currency_filters i18n %}{% load  promotion_tags %}{% blocktrans with order_number=order.number %}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:order.currency }}
{% endfor %}
{% 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 order.useATM %}
{% trans 'ATM remittance information' %}:
{% render_promotion ATMInfo %}

{% trans 'Click the link to go to ATM payment details' %}
http://{{ site.domain }}{% url 'atmFill' orderNumber=order.number %}
{% endif %}

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

{% if order.useInvoice %}
{% trans 'Get invoice' %}: 
{% if request.is_secure %}https{% else %}http{% endif %}://{{ site.domain }}{% url 'invoice' orderNumber=order.number %}
{% endif %}

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