{% extends "layout.html" %} {% block title %}Cash Balances{% endblock %} {% block content %}
Displays cash balances in the selected accounts. You can enter multiple accounts, comma-separated.
Name | Full Name | Currency | Balance |
---|---|---|---|
{{ model["data"][currency]["name"] }} | {{ "{:,.2f}".format(model["data"][currency]["total"]) }} | ||
{{ account.name }} | {{ account.fullname }} | {{ account.currency }} | {{ "{:,.2f}".format(account.balance) }} |
Name | Full Name |