From d92abf692bdcfd9e906ae7e1ba234e9c61a57590 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Wed, 11 Jan 2023 19:39:10 -0400 Subject: [PATCH] Fix bug in reserved amount display --- templates/sn.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/sn.html b/templates/sn.html index 340d3c1..afc08dd 100644 --- a/templates/sn.html +++ b/templates/sn.html @@ -60,7 +60,7 @@ {%if 'total_reserved' in sn and sn.total_reserved != sn.total_contributed%} - {{sn.total_reserved - sn.total_contributed | oxen}} + {{(sn.total_reserved - sn.total_contributed) | oxen}} {%endif%}