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