{% extends 'email.html' %} {% load i18n %} {% block content %} {% if order.address %} {% endif %} {% if order.comment %} {% endif %}

{{ title }}

{% trans 'Full name' %}:
{{ order.full_name }}
{% trans 'Phone' %}:
{{ order.mobile }}
{% trans 'Payment method' %}:
{{ order.get_payment_method_display }}
{% trans 'Delivery method' %}:
{{ order.delivery_method }}
{% trans 'Address' %}:
{{ order.address }}
{% trans 'Comment' %}:
{{ order.comment }}
{% block products %} {% for item in order.items.all %} {% endfor %} {% endblock %}
{% trans 'Product' %} {% trans 'Price' %}
{{ item.product_name }} ({{ item.product_code }}) {% if is_clothes_app_enabled %}
{% for size in item.clothe_sizes.all %} {% for label, value in size.get_values %} {{ label }}: {{ value }}
{% endfor %}
{% endfor %} {% endif %}
{{ item.qty }} x {{ item.product_printable_price }}
{% trans 'Total' %}: {{ order.printable_total }}
{% endblock %}