{% extends 'budget/base.html' %} {% load budget %} {% block title %}Dashboard{% endblock title %} {% block budget_content %}

Dashboard

Latest Expenses

{% if latest_expenses %} {% for expense in latest_expenses %} {% endfor %} {% else %} {% endif %}
Notes Date Amount
{{ expense.notes }} {{ expense.date|date:"m/d/Y" }} ${{ expense.amount|stringformat:".02f" }}
No recent expenses found.

Add A New Transaction

Latest Incomes

{% if latest_incomes %} {% for income in latest_incomes %} {% endfor %} {% else %} {% endif %}
Notes Date Amount
{{ income.notes }} {{ income.date|date:"m/d/Y" }} ${{ income.amount|stringformat:".02f" }}
No recent incomes found.

Add A New Transaction

This Month's Usage

 

${{ amount_used|stringformat:".02f" }} out of ${{ estimated_amount|stringformat:".02f" }}.

{% endblock budget_content %}