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

{{ title }}

ПІБ:
{{ order.full_name }}
Телефон:
{{ order.mobile }}
Спосіб оплати:
{{ order.get_payment_method_display }}
Спосіб доставки:
{{ order.delivery_method }}
Адреса:
{{ order.address }}
Коментар:
{{ order.comment }}
{% block products %} {% for item in order.items.all %} {% endfor %} {% endblock %}
Товар Ціна
{{ 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 }}
Загалом: {{ order.printable_total }}
{% endblock %}