From 9af0cce802260b27fccd3a065342d3897b2b2693 2019-12-16 17:24:08 From: Brett Smith Date: 2019-12-16 17:24:08 Subject: [PATCH] invoice: Bugfix VAT rendering in invoice details. --- diff --git a/pinaxcon/templates/registrasion/invoice/details.html b/pinaxcon/templates/registrasion/invoice/details.html index 464057020909a5e15f0597fa21512a45211fcb15..569e20cf131628f50540bbfba4d9a341b4c9eb33 100644 --- a/pinaxcon/templates/registrasion/invoice/details.html +++ b/pinaxcon/templates/registrasion/invoice/details.html @@ -38,10 +38,10 @@ {% endblock %} {% block extra_line_items_after_total %} - {% vat_amount(invoice) as vat %} + {% vat_amount invoice as vat %} {% if vat %} - Includes {{ vat_rate }} VAT: + Includes {% vat_rate %} VAT: ${{ vat }} {% endif %}