Only show GST line if non-zero
This commit is contained in:
parent
fc88c31d82
commit
ceda6dce0a
1 changed files with 6 additions and 4 deletions
|
@ -46,10 +46,12 @@
|
|||
|
||||
<tr><th colspan="4"></th></tr>
|
||||
|
||||
<tr>
|
||||
<th colspan="3">Includes 10% Australian Goods and Services Tax</th>
|
||||
<td class="text-right">${{ invoice.value|gst}}</td>
|
||||
</tr>
|
||||
{% if invoice.value|gst %}
|
||||
<tr>
|
||||
<th colspan="3">Includes 10% Australian Goods and Services Tax</th>
|
||||
<td class="text-right">${{ invoice.value|gst}}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
||||
<tr>
|
||||
<th colspan="3">Total</th>
|
||||
|
|
Loading…
Reference in a new issue