From 18047f754932c02d24ca2fcb82513efaf52bc265 Mon Sep 17 00:00:00 2001 From: James Polley Date: Sun, 24 Sep 2017 17:43:11 +1000 Subject: [PATCH] Show paid/cancelled invoices An errant ``{% if pending %}`` meant that we were only showing paid and cancelled invoices - and the ability to buy new products - if there was currently a pending invoice. This change remove the errant check and allows for anyone with a paid invoice to inspect it; or to add products. --- pinaxcon/templates/dashboard.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pinaxcon/templates/dashboard.html b/pinaxcon/templates/dashboard.html index 579899d1..0f999646 100644 --- a/pinaxcon/templates/dashboard.html +++ b/pinaxcon/templates/dashboard.html @@ -59,14 +59,14 @@ {% items_pending as pending %} - {% if pending %} +

Account

- {% items_pending as pending %} + {% if pending %}
@@ -150,7 +150,7 @@
- {% endif %} + {% endif %}