more template styling

This commit is contained in:
Thomas Steen Rasmussen 2016-07-13 00:24:34 +02:00
parent c4459695da
commit 178be1deb0

View file

@ -20,28 +20,28 @@
<br> <br>
<h2>INVOICE</h2> <h2>INVOICE</h2>
<table style="width:90%; margin:1em;"> <table style="width:90%">
<tr> <tr>
<td> <td>
<b>Text <b>Text
<td class="text-center" style="width: 20%"> <td align="center" style="width: 20%">
<b>Price <b>Price
<tr> <tr>
<td> <td>
{{ invoice.customorder.text|linebreaks }} {{ invoice.customorder.text|linebreaks }}
<td class="text-right"> <td align="right">
{{ invoice.customorder.amount|currency }} {{ invoice.customorder.amount|currency }}
<tr> <tr>
<td class="text-right"> <td align="right">
<strong>Danish VAT (25%)</strong> <strong>Danish VAT (25%)</strong>
<td class="text-right"> <td align="right">
{{ invoice.customorder.vat|currency }} {{ invoice.customorder.vat|currency }}
<tr> <tr>
<td class="text-right"> <td align="right">
<strong>Total</strong> <strong>Total</strong>
<td class="text-right"> <td align="right">
{{ invoice.customorder.amount|currency }} {{ invoice.customorder.amount|currency }}
</table> </table>
<br> <br>