{% load static from staticfiles %} {% load shop_tags %}

BornHack IVS

 

Invoice {{ invoice.pk }}

  Order number: {{ invoice.order.pk }}
Invoice number: {{ invoice.pk }}
Invoice date: {% now "b js, Y" %}



Products

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 }}

The order has been paid in full.