{% 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 %} {% endfor %}
{% trans "Item" context "Ordered item name" %} {% trans "Quantity" context "Quantity ordered of a product" %}
{% display_translated_order_line_name line.order_line %} {{ line.quantity }}
{% endif %} {% if digital_lines %} {% for line in digital_lines %} {% endfor %}
{% trans "Item" context "Ordered item name" %} {% trans "Download Link" context "Ordered item download links" %}
{% display_translated_order_line_name line.order_line %} Link
{% 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 %}