{% extends "base.html" %} {% block title %}BiweeklyBudget{% endblock %} {% block extra_head_css %} {% endblock %} {% block body %} {% include 'notifications.html' %}
Account Balances
Standing Budgets
{% for b in standing_budgets %} {% endfor %}
Budget Current Balance
{{ b.name }} ({{ b.id }}) {{ b.current_balance|dollars }}
{% for period in periods %} {% if curr_pp.start_date == period.start_date %} {% else %} {% endif %} {% endfor %}
Start Date Allocated Spent Remaining
{{ period.start_date|dateymd }} (current)
{{ period.start_date|dateymd }}{{ period.overall_sums['allocated']|dollars }} {{ period.overall_sums['spent']|dollars }} {{ period.overall_sums['remaining']|reddollars|safe }}
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 }} {{ (acct.balance.ledger - acct.unreconciled_sum)|reddollars|safe }}
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|safe }} {{ (acct.credit_limit + acct.balance.ledger - acct.unreconciled_sum)|reddollars|safe }}
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 %}