{% extends "base.html" %} {% block title %}{{ acct.name }} - BiweeklyBudget{% endblock %} {% block body %} {% include 'notifications.html' %}
| Description | {{ acct.description }} | |
|---|---|---|
| Type | {{ acct.acct_type.name }} | |
| Ledger Balance | {{ acct.balance.ledger|dollars }} | |
| Available Balance | {{ acct.balance.avail|dollars }} | |
| Credit Limit | {{ acct.credit_limit|dollars }} | |
| Last OFX Data | {% if acct.is_stale %}{{ acct.ofx_statement.as_of|isodate }} ({{ acct.ofx_statement.as_of|ago }}) | {% else %}{{ acct.ofx_statement.as_of|isodate }} ({{ acct.ofx_statement.as_of|ago }}) | {% endif %}
| Active? | {% if acct.is_active %}{{ acct.is_active }} | {% else %}{{ acct.is_active }} | {% endif %}
| OFXGetter Config | {{ acct.ofxgetter_config_json }} |
|
| reconcile_trans | {{ acct.reconcile_trans }} | |
| negate_ofx_amounts | {{ acct.negate_ofx_amounts }} | |
| ofx_cat_memo_to_name | {{ acct.ofx_cat_memo_to_name }} | |
| Interest Charge regex | {{ acct.re_interest_charge }} |
|
| Interest Paid regex | {{ acct.re_interest_paid }} |
|
| Payment regex | {{ acct.re_payment }} |
|
| Fee regex | {{ acct.re_fee }} |