{% extends "customer/emails/base.txt" %}
{% load currency_filters i18n %}{% block body %}{% autoescape off %}
{% blocktrans with order_number=order.number %}We are pleased to confirm your order {{ order_number }} has been shipped.{% endblocktrans %}

{% trans 'Your shipment contains' %}:

{% for line, quantity in lines %} * {{ line.title }} - {%  trans 'quantity:' %} {{ quantity }}
{% endfor %}

{% trans 'Shipping address:' %}

{% for field in order.shipping_address.active_address_fields %}  {{ field }}
{% endfor %}
{% if tracking_url %}
{% blocktrans %}You can view the status of your shipment at the below URL:
{{ tracking_url }}{% endblocktrans %}

{% if tracking.tracking_code %}
   {% blocktrans %}Your tracking code is: {{tracking.tracking_code}}{% endblocktrans %}
{% endif %}

{% endif %}{% endautoescape %}{% endblock %}
