{% extends "base.html" %}
{% block title %}Budgets - BiweeklyBudget{% endblock %}
{% block body %}
{% include 'notifications.html' %}
Periodic Budgets
Active? |
Budget |
Starting Balance |
{% for b in periodic %}
{% if b.is_active %}{% else %}
{% endif %}
{% if b.is_active %}yes | {% else %}NO | {% endif %}
{{ b.name }} ({{ b.id }}){% if b.is_income %} (income){% endif %} |
{{ b.starting_balance|dollars }} |
{% endfor %}
Standing Budgets
Active? |
Budget |
Current Balance |
{% for b in standing %}
{% if b.is_active %}{% else %}
{% endif %}
{% if b.is_active %}yes | {% else %}NO | {% endif %}
{{ b.name }} ({{ b.id }}) |
{{ b.current_balance|dollars }}
|
{% endfor %}
{% include 'modal.html' %}
{% endblock %}
{% block extra_foot_script %}
{% endblock %}