{% extends 'email.html' %} {% load i18n %} {% 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.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 }}) [{% trans 'View on site' %}] {{ item.qty }} x {{ item.product.printable_price }}
{% trans 'Total' %}: {{ order.printable_total }}
{% endblock %}