{% load i18n lfs_tags %}
{% 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:request}} |
{% trans 'Invoice address' %} | {% trans 'Shipping address' %} | {% trans 'Shipping method' %} | {% trans 'Payment method' %} |
---|---|---|---|
{% render_address current_order.invoice_address "invoice" %} | {% render_address current_order.shipping_address "shipping" %} |
{{ 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 %}
|
{% trans 'Image' %} | {% trans 'SKU' %} | {% trans 'Name' %} | {% trans 'Amount' %} | {% trans 'Price' %} | {% trans 'Total' %} |
---|---|---|---|---|---|
{% if item.product.get_image.image %} {% else %} {% endif %} | {{ item.product_sku }} | {{ item.product_name }} {% include "lfs/catalog/products/_product_properties.html" with product=item.product configurable_properties=item.get_properties %} | {{ item.amount }} | {{ item.product_price_gross|currency:request}} | {{ item.price_gross|currency:request}} |
{% trans 'Shipping' %} ({{ current_order.shipping_method }}) | 1 | {{ current_order.shipping_price|currency:request}} | {{ current_order.shipping_price|currency:request}} | ||
{% trans 'Payment' %} ({{ current_order.payment_method }}) | 1 | {{ current_order.payment_price|currency:request}} | {{ current_order.payment_price|currency:request}} | ||
{{ current_order.price|currency:request}} | |||||
{% trans 'Inclusive VAT' %}: {{ current_order.tax|currency:request}} |
{% trans 'Message from the customer' %} |
---|
{{ current_order.message }} |