{% extends "base.html" %} {% load i18n %} {% load budget_tags %} {% block title %}{% trans "Dashboard" %}{% endblock title %} {% block content %}
{% 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 "Notes" %} | {% trans "Date" %} | {% trans "Amount" %} |
---|---|---|
{{ income.notes }} | {{ income.date|date:"SHORT_DATE_FORMAT" }} | {% trans "$" %} {{ income.amount|stringformat:".02f" }} |
{% trans "No recent incomes found." %} |
{% blocktrans with amount=amount_used|stringformat:".02f" estimate=estimated_amount|stringformat:".02f"%} $ {{ amount }} out of $ {{ estimate }}. {% endblocktrans %}
{% endblock content %}