{% extends "base.html" %} {% block title %}Budgets - BiweeklyBudget{% endblock %} {% block body %} {% include 'notifications.html' %}

Periodic Budgets
{% for b in periodic %} {% if b.is_active %}{% else %}{% endif %} {% if b.is_active %}{% else %}{% endif %} {% endfor %}
Active? Budget Starting Balance
yesNO{{ b.name }} ({{ b.id }}){% if b.is_income %} (income){% endif %} {{ b.starting_balance|dollars }}
Standing Budgets
{% for b in standing %} {% if b.is_active %}{% else %}{% endif %} {% if b.is_active %}{% else %}{% endif %} {% endfor %}
Active? Budget Current Balance
yesNO{{ b.name }} ({{ b.id }}) {{ b.current_balance|dollars }}
{% include 'modal.html' %} {% endblock %} {% block extra_foot_script %} {% endblock %}