{% load i18n %} {% load lfs_tags %}
{% trans 'Ordernumber' %} {{ current_order.uuid }}
{% trans 'General' %}
{% trans 'Customer name' %}: {{ current_order.customer_firstname }} {{ current_order.customer_lastname }} {% trans 'Date' %}: {{ current_order.created|date:_("DATETIME_FORMAT") }}
{% trans 'E-mail' %}: {{ current_order.customer_email }} {% trans 'State' %}: {{ current_order.get_state_display }}
{% trans 'Phone' %}: {{ current_order.shipping_phone }} {% trans 'Total' %}: {{ current_order.price|currency }}
{% trans 'Invoice address' %} {% trans 'Shipping address' %} {% trans 'Shipping method' %} {% trans 'Payment method' %}
{{ current_order.invoice_firstname }}
{{ current_order.invoice_lastname }}
{{ current_order.invoice_company_name }}
{{ current_order.invoice_street }}
{{ current_order.invoice_zip_code }} {{ current_order.invoice_city }}
{{ current_order.invoice_country }}
{{ current_order.invoice_phone }}
{{ current_order.shipping_firstname }}
{{ current_order.shipping_lastname }}
{{ current_order.shipping_company_name }}
{{ current_order.shipping_street }}
{{ current_order.shipping_zip_code }} {{ current_order.shipping_city }}
{{ current_order.shipping_country }}
{{ current_order.shipping_phone }}
{{ current_order.shipping_method }}
{{ current_order.payment_method.name }}
{% ifequal current_order.payment_method.id 1 %}
{{ current_order.account_number }}
{{ current_order.bank_identification_code }}
{{ current_order.bank_name }}
{{ current_order.depositor }}
{% endifequal %}
{% for item in current_order.items.all %} {% endfor %}
{% trans 'SKU' %} {% trans 'Name' %} {% trans 'Amount' %} {% trans 'Price' %} {% trans 'Total' %}
{{ item.product_sku }} {{ item.product_name }} {% for property in item.product.get_variant_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }}
{% endfor %} {% for property in item.product.get_displayed_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }}
{% endfor %} {% if item.product.is_configurable_product %} {% for property in item.get_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }} ({{ property.price|currency }})
{% endfor %} {% endif %}
{{ item.product_amount }} {{ item.product_price_gross|currency }} {{ item.price_gross|currency }}
{% trans 'Shipping' %} ({{ current_order.shipping_method }}) 1 {{ current_order.shipping_price|currency }} {{ current_order.shipping_price|currency }}
{% trans 'Payment' %} ({{ current_order.payment_method }}) 1 {{ current_order.payment_price|currency }} {{ current_order.payment_price|currency }}
{{ current_order.price|currency }}
{% trans 'Inclusive VAT' %}: {{ current_order.tax|currency }}
{% if current_order.message %}
{% trans 'Message from the customer' %}
{{ current_order.message }}
{% endif %}