2016-07-12 20:33:53 +00:00
{% load static from staticfiles %}
{% load shop_tags %}
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" >
< table style = "width:100%;" >
< tr >
< td style = "width: 75%;" > < / td >
< td >
< h3 >
{{ invoice.created|date:"b jS, Y" }}< br >
2016-07-12 21:32:05 +00:00
Custom Order #{{ invoice.customorder.pk }}< br >
2016-07-12 20:33:53 +00:00
Invoice #{{ invoice.pk }}
< / h3 >
< / td >
< / tr >
< / table >
2016-07-12 22:21:03 +00:00
< h2 > CUSTOMER< / h2 >
< p class = "lead" > {{ invoice.customorder.customer|linebreaks }}< / p >
2016-07-12 20:33:53 +00:00
< br >
2016-07-12 22:21:03 +00:00
2016-07-12 20:33:53 +00:00
< h2 > INVOICE< / h2 >
2016-07-12 22:24:34 +00:00
< table style = "width:90%" >
2016-07-12 20:33:53 +00:00
< tr >
< td >
< b > Text
2016-07-12 22:24:34 +00:00
< td align = "center" style = "width: 20%" >
2016-07-12 20:33:53 +00:00
< b > Price
< tr >
< td >
2016-07-12 21:32:05 +00:00
{{ invoice.customorder.text|linebreaks }}
2016-07-12 22:24:34 +00:00
< td align = "right" >
2016-07-12 20:33:53 +00:00
{{ invoice.customorder.amount|currency }}
< tr >
2016-07-12 22:24:34 +00:00
< td align = "right" >
2016-07-12 20:33:53 +00:00
< strong > Danish VAT (25%)< / strong >
2016-07-12 22:24:34 +00:00
< td align = "right" >
2016-07-12 20:33:53 +00:00
{{ invoice.customorder.vat|currency }}
< tr >
2016-07-12 22:24:34 +00:00
< td align = "right" >
2016-07-12 20:33:53 +00:00
< strong > Total< / strong >
2016-07-12 22:24:34 +00:00
< td align = "right" >
2016-07-12 20:33:53 +00:00
{{ invoice.customorder.amount|currency }}
< / table >
< br >
2016-07-12 22:21:03 +00:00
2016-07-12 20:33:53 +00:00
< p class = "lead" >
2016-07-12 21:16:45 +00:00
Payment should be made by bank transfer to our account in Arbejdernes Landsbank reg. 5371 account no. 0244504 within two weeks from {{ invoice.created|date:"b jS, Y" }} please. Thank you!
2016-07-12 20:33:53 +00:00
< / p >