06/02 Update bank accounts show balance

This commit is contained in:
2026-06-02 16:01:17 -04:00
parent 4e47eddf70
commit 8b97854949
+6
View File
@@ -55,6 +55,12 @@
</div> </div>
</div> </div>
{% if tab == 'bank' %}
<div class="mono {% if acct.balance >= 0 %}text-income{% else %}text-expense{% endif %}" style="font-size:26px;font-weight:700;margin-top:12px;">
{{ acct.balance | currency }}
</div>
{% endif %}
{% if tab == 'credit' %} {% if tab == 'credit' %}
<!-- Amount Owed + Monthly Charges --> <!-- Amount Owed + Monthly Charges -->
{% set owed = [0, -acct.balance] | max %} {% set owed = [0, -acct.balance] | max %}