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