{% load i18n %} {% 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}} {% if current_order.state_modified %}({{ current_order.state_modified|date:_("DATETIME_FORMAT") }}){% endif %} |
{% trans 'Phone' %}: | {{current_order.shipping_phone}} | {% trans 'Total' %}: | {{current_order.price|currency}} |
{% trans 'Shipping address' %} | {% trans 'Invoice address' %} | {% trans 'Shipping method' %} | {% trans 'Payment method' %} |
---|---|---|---|
{{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.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_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 'SKU' %} | {% trans 'Name' %} | {% trans 'Amount' %} | {% trans 'Price' %} | {% trans 'Included VAT' %} | {% 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.product_tax|currency}}) | {{item.price_gross|currency}} |
{% trans 'Voucher' %} ({{ current_order.voucher_number }}) | 1 | - {{ current_order.voucher_price|currency }} | - {{ current_order.voucher_price|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}} |
{% trans 'Message from the customer' %} | ||||
---|---|---|---|---|
{{current_order.message}} |
{% trans 'Paypal Transaction ID' %} | ||||
---|---|---|---|---|
{{ipn.txn_id}} |