From 06b0030e69eaefc918df6535bb295d077c5e303c Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 31 Jan 2019 13:11:02 -0500 Subject: [PATCH] Only show totals on the report generator hide if not report generator --- views/admin/billing/reports.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/views/admin/billing/reports.html b/views/admin/billing/reports.html index 7aeb51c..bdd7cc9 100644 --- a/views/admin/billing/reports.html +++ b/views/admin/billing/reports.html @@ -147,10 +147,12 @@ {/if} -
-
Total Invoices: {$totalInvoices}
-
Total Payments: {$totalPayments}
-
+{if $option == 'reportGenerator'} +
+
Total Invoices: {$totalInvoices}
+
Total Payments: {$totalPayments}
+
+{/if}