{% extends 'email.html' %} {% load i18n %} {% block style %} {{ block.super }} {% endblock %} {% block header %} {{ site.domain|capfirst }} | {{ title }} [{% trans 'View on site' %}] {% endblock %} {% block content %} {% if order.address %} {% endif %} {% if order.comment %} {% endif %}
{% trans 'Full name' %}:
{{ order.full_name }}
{% trans 'Phone' %}:
{{ order.mobile }}
{% trans 'Payment method' %}:
{{ order.payment_method.name }}
{% trans 'Delivery method' %}:
{{ order.delivery_method.name }}
{% trans 'Product count' %}:
{{ order.count }}
{% trans 'Email' %}:
{{ order.email|default:'-' }}
{% 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 }}) [{% trans 'View on site' %}] {{ item.product.printable_price }}
{% trans 'Total' %}: {{ order.printable_total }}
{% endblock %}