{% extends "base.html" %} {% block title %}BiweeklyBudget{% endblock %} {% block extra_head_css %} {% endblock %} {% block body %} {% include 'notifications.html' %}
Placeholder - Account Balances
Standing Budgets
{% for b in standing_budgets %} {% endfor %}
Budget Current Balance
{{ b.name }} ({{ b.id }}) {{ b.current_balance|dollars }}
Bank Accounts
{% for acct in bank_accounts|sort(attribute='name') %} {% endfor %}
Account Balance Unreconciled Difference
{{ acct.name }} {{ acct.balance.ledger|dollars }} {% if acct.is_stale %} ({{ acct.ofx_statement.as_of|ago }}) {% else %} ({{ acct.ofx_statement.as_of|ago }}) {% endif %} {{ acct.unreconciled_sum|dollars }} {{ (cast_float(acct.balance.ledger) - acct.unreconciled_sum)|reddollars }}
Credit Cards
{% for acct in credit_accounts|sort(attribute='name') %} {% endfor %}
Account Balance Available Avail - Unrec
{{ acct.name }} {{ acct.balance.ledger|dollars }} {% if acct.is_stale %} ({{ acct.ofx_statement.as_of|ago }}) {% else %} ({{ acct.ofx_statement.as_of|ago }}) {% endif %} {{ (acct.credit_limit + acct.balance.ledger)|reddollars }} {{ (cast_float(acct.credit_limit + acct.balance.ledger) - acct.unreconciled_sum)|reddollars }}
Investment Accounts
{% for acct in investment_accounts|sort(attribute='name') %} {% endfor %}
Account Value
{{ acct.name }} {{ acct.balance.ledger|dollars }} {% if acct.is_stale %} ({{ acct.ofx_statement.as_of|ago }}) {% else %} ({{ acct.ofx_statement.as_of|ago }}) {% endif %}
{% endblock %} {% block extra_foot_script %} {% endblock %}