{% extends 'email.html' %} {% block content %}
{{ title }} |
|
|
ПІБ: {{ order.full_name }} |
Телефон: {{ order.mobile }} |
|
Спосіб оплати: {{ order.get_payment_method_display }} |
Спосіб доставки: {{ order.delivery_method }} |
|
Адреса: {{ order.address }} |
|
|
Коментар: {{ order.comment }} |
|
| Товар | Ціна | ||
|
{{ 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 }} | |||