{% extends "base.html" %} {% load i18n %} {% load budget_tags %} {% block title %}{% trans "Dashboard" %}{% endblock title %} {% block content %}

{% trans "Dashboard" %}

{% trans "Latest Expenses" %}

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

{% trans "Latest Incomes" %}

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

{% trans "New Transaction" %}


{% trans "This Month's Usage" %}

 

{% blocktrans with amount=amount_used|stringformat:".02f" estimate=estimated_amount|stringformat:".02f"%} $ {{ amount }} out of $ {{ estimate }}. {% endblocktrans %}

{% endblock content %}