{% extends "base.html" %} {% block title %}{{ acct.name }} - BiweeklyBudget{% endblock %} {% block body %} {% include 'notifications.html' %}
{{ acct.name }} ({{ acct.id }})
{% if acct.balance.avail is not none %} {% endif %} {% if acct.acct_type.name == 'Credit' %} {% endif %} {% if acct.is_stale %} {% else %} {% endif %} {% if acct.is_active %} {% else %} {% endif %}
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{{ acct.ofx_statement.as_of|isodate }} ({{ acct.ofx_statement.as_of|ago }}){{ acct.ofx_statement.as_of|isodate }} ({{ acct.ofx_statement.as_of|ago }})
Active?{{ acct.is_active }}{{ acct.is_active }}
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 }}
{% endblock %}