{% load shop_tags %}
Order number: {{ invoice.order.pk }} |
Invoice number: {{ invoice.pk }} |
Date: {% now "j/n-Y" %} |
Name | Quantity | Price |
Total
{% for order_product in invoice.order.orderproductrelation_set.all %}
{{ order_product.product.name }}
|
{{ order_product.quantity }}
|
{{ order_product.product.price|currency }}
|
{{ order_product.total|currency }}
{% endfor %}
|
|
Danish VAT (25%)
|
{{ order.vat|currency }}
|
|
Total
|
{{ order.total|currency }}
| |