bornhack-website/shop/templates/pdf/custominvoice.html
Thomas Steen Rasmussen 178be1deb0 more template styling
2016-07-13 00:24:34 +02:00

52 lines
1.3 KiB
HTML

{% 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>
Custom Order #{{ invoice.customorder.pk }}<br>
Invoice #{{ invoice.pk }}
</h3>
</td>
</tr>
</table>
<h2>CUSTOMER</h2>
<p class="lead">{{ invoice.customorder.customer|linebreaks }}</p>
<br>
<h2>INVOICE</h2>
<table style="width:90%">
<tr>
<td>
<b>Text
<td align="center" style="width: 20%">
<b>Price
<tr>
<td>
{{ invoice.customorder.text|linebreaks }}
<td align="right">
{{ invoice.customorder.amount|currency }}
<tr>
<td align="right">
<strong>Danish VAT (25%)</strong>
<td align="right">
{{ invoice.customorder.vat|currency }}
<tr>
<td align="right">
<strong>Total</strong>
<td align="right">
{{ invoice.customorder.amount|currency }}
</table>
<br>
<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!
</p>