{% load i18n %}{% load static %}
{% trans "Hi!" context "Standard e-mail greeting" %}
{% blocktrans trimmed context "Fulfillment confirmation email text" %} Thank you for your order. Below is the list of fulfilled products. {% endblocktrans %} {% if fulfillment.tracking_number %} {% blocktrans trimmed with tracking_number=fulfillment.tracking_number context "Fulfillment confirmation email text" %} You can track your shipment with {{ tracking_number }} code. {% endblocktrans %} {% endif %}
{% if digital_lines %} {% blocktrans trimmed context "Fulfillment digital products email text" %} You can download your digital products by clicking in download link(s). {% 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 %}