bornhack-website/shop/templates/pdf/custominvoice.html

52 lines
1.3 KiB
HTML
Raw Normal View History

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%;">&nbsp;</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">
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>