{% load i18n %} {% load lfs_tags %}
{% trans 'General' %} | |||
---|---|---|---|
{% trans 'Customer name' %}: | {{order.customer_firstname}} {{order.customer_lastname}} | {% trans 'Date' %}: | {{order.created|date:_("DATETIME_FORMAT")}} |
{% trans 'E-mail' %}: | {{order.customer_email}} | {% trans 'State' %}: | {{order.get_state_display}} |
{% trans 'Phone' %}: | {{order.shipping_phone}} | {% trans 'Total' %}: | {{order.price|currency}} |
{% trans 'Shipping address' %} | {% trans 'Invoice address' %} | {% trans 'Shipping method' %} | {% trans 'Payment method' %} |
---|---|---|---|
{{order.shipping_firstname}}
{{order.shipping_lastname}}
{{order.shipping_company_name}}
{{order.shipping_street}}
{{order.shipping_zip_code}} {{order.shipping_city}}
{{order.shipping_country}}
{{order.shipping_phone}}
{{order.shipping_email}}
|
{{order.invoice_firstname}}
{{order.invoice_lastname}}
{{order.invoice_company_name}}
{{order.invoice_street}}
{{order.invoice_zip_code}} {{order.invoice_city}}
{{order.invoice_country}}
{{order.invoice_phone}}
{{order.invoice_email}}
|
{{order.shipping_method}}
|
{{order.payment_method.name}}
{% ifequal order.payment_method.id 1 %}
{{order.account_number}}
{{order.bank_identification_code}}
{{order.bank_name}}
{{order.depositor}}
{% endifequal %}
{% ifequal order.payment_method.id 3 %}
{% endifequal %}
|
{% 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' %} ({{order.shipping_method}}) | 1 | {{order.shipping_price|currency}} | {{order.shipping_price|currency}} | |
{% trans 'Payment' %} ({{order.payment_method}}) | 1 | {{order.payment_price|currency}} | {{order.payment_price|currency}} | |
{{order.price|currency}} | ||||
{% trans 'Inclusive VAT' %}: {{order.tax|currency}} |