From 8b97854949ffc3fedd9c59c64e570e2833e95695 Mon Sep 17 00:00:00 2001 From: NguyenND Date: Tue, 2 Jun 2026 16:01:17 -0400 Subject: [PATCH] 06/02 Update bank accounts show balance --- app/templates/accounts/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/templates/accounts/index.html b/app/templates/accounts/index.html index d6ec190..a3802c3 100644 --- a/app/templates/accounts/index.html +++ b/app/templates/accounts/index.html @@ -55,6 +55,12 @@ + {% if tab == 'bank' %} +
+ {{ acct.balance | currency }} +
+ {% endif %} + {% if tab == 'credit' %} {% set owed = [0, -acct.balance] | max %}