Changeset - ceda6dce0a32
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 14 months ago 2023-04-20 04:58:12
ben@sturm.com.au
Only show GST line if non-zero
1 file changed with 6 insertions and 4 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/_invoice_details.html
Show inline comments
...
 
@@ -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>
0 comments (0 inline, 0 general)