From 9af0cce802260b27fccd3a065342d3897b2b2693 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Mon, 16 Dec 2019 12:24:08 -0500 Subject: [PATCH] invoice: Bugfix VAT rendering in invoice details. --- pinaxcon/templates/registrasion/invoice/details.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pinaxcon/templates/registrasion/invoice/details.html b/pinaxcon/templates/registrasion/invoice/details.html index 4640570..569e20c 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 %}