{% 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 option in item.product.get_options %} {% if option.property.display_on_product %}
{{option.property.name}} : {{option.value|option_name}} {{ option.property.unit|safe }}
{% endif %} {% endfor %}
{{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 %}