{% load shop_tags %} This is an invoice. {% 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 }}