Overview
Checking Account
Account Number:{{ account_id }}
Current Balance
{{ format_currency(balance) }}Transaction History
{% if history is none %}
{% endif %}
Error: Could Not Load Transactions
{% elif history|length == 0 %}No Transactions Found
{% else %}Date | Type | Account | Label | Amount | ||||
---|---|---|---|---|---|---|---|---|
{{ format_timestamp_month(t.timestamp) }} {{ format_timestamp_day(t.timestamp) }} |
{% if t.toAccountNum == account_id %}
● Credit | {{ t.fromAccountNum }} | {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} | +{{ format_currency(t.amount) }} | {% elif t.fromAccountNum == account_id %}● Debit | {{ t.toAccountNum }} | {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} | -{{ format_currency(t.amount) }} | {% endif %}
Overview
Checking Account
Account Number:{{ account_id }}
Current Balance
{{ format_currency(balance) }}Transaction History
{% if history is none %}
{% endif %}
Error: Could Not Load Transactions
{% elif history|length == 0 %}No Transactions Found
{% else %}Date | Type | Account | Label | Amount | ||||
---|---|---|---|---|---|---|---|---|
{{ format_timestamp_month(t.timestamp) }} {{ format_timestamp_day(t.timestamp) }} |
{% if t.toAccountNum == account_id %}
● Credit | {{ t.fromAccountNum }} | {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} | +{{ format_currency(t.amount) }} | {% elif t.fromAccountNum == account_id %}● Debit | {{ t.toAccountNum }} | {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} | -{{ format_currency(t.amount) }} | {% endif %}