{% load i18n %}{% load static %}
{% trans "Hi!" context "Standard e-mail greeting" %}
|
{% blocktrans trimmed context "Fulfillment update email text" %}
Your shipping status has been updated. Below is the list of ordered products that have been updated with new tracking number.
{% endblocktrans %}
{% if fulfillment.tracking_number %}
{% blocktrans trimmed with tracking_number=fulfillment.tracking_number context "Fulfillment update email text" %}
You can track your shipment with {{ tracking_number }} code.
{% endblocktrans %}
{% endif %}
|
|
{% load display_translated_order_line_name from order_lines %}
{% if physical_lines %}
{% for line in physical_lines %}
{% display_translated_order_line_name line.order_line %} |
{{ line.quantity }} |
{% endfor %}
{% endif %}
{% if digital_lines %}
{% for line in digital_lines %}
{% display_translated_order_line_name line.order_line %} |
Link
|
{% endfor %}
{% endif %}
|
|
{% blocktrans trimmed context "Base email text" %}
This is an automatically generated e-mail, please do not reply.
{% endblocktrans %}
|
|
{% blocktrans trimmed context "Base email footer" %}
Sincerely, {{ site_name }}
{% endblocktrans %}
|
|
{% if schema_markup %}
{% endif %}
|
|