{% load i18n currency_filters %}
{% trans "Original invoice" %} #{{ invoice.number }}{% trans "Order" %} #{{ order.number }} {% trans "Date" %}: {{ order.date_placed|date:'d.m.Y' }} |
||||||
|
||||||
|
||||||
# | {% trans "Description" %} | {% trans "Quantity" %} | {% trans "Unit price" %} | {% trans "Total" %} | ||
{{ forloop.counter }} | {{ line.description }} | {{ line.quantity }} | {{ line.unit_price_excl_tax|currency:order.currency }} | {{ line.line_price_excl_tax|currency:order.currency }} | ||
{% trans "Shipping charge" %}: | {{ order.shipping_excl_tax|currency:order.currency }} | |||||
{% trans "Discount" %} {{ discount.offer }}: | - {{ discount.amount|currency:order.currency }} | |||||
{% trans "Discount" %} {{ discount.offer }}: | - {{ discount.amount|currency:order.currency }} | |||||
{% trans "Order tax" %}: | {{ order.total_tax|currency:order.currency }} | |||||
{% trans "Order total" %}: | {{ order.total_incl_tax|currency:order.currency }} | |||||
{% trans "Terms and conditions" %}:{{ terms_and_conditions }} |
||||||
{% trans "Notes" %}:{{ additional_data }} |