{% extends "base.html" %} {% load i18n %} {% load budget_tags %} {% block title %} {% blocktrans with year_month=start_date|date:"F Y" %}Month Summary For {{ year_month }}{% endblocktrans %} {% endblock title %} {% block content %}
{% trans "Category" %} | {% trans "Estimated Total" %} | {% trans "Actual Total" %} | |||
---|---|---|---|---|---|
{{ group.estimate.category.name }}
[+]
{% if group.transactions %}
{% trans "No transactions found." %} {% endif %} |
${{ group.estimate.amount|stringformat:".02f" }} | ${{ group.actual_amount|stringformat:".02f" }} | |||
{% trans "No data to show." %} | |||||
{% trans "Total" %}: | ${{ budget.monthly_estimated_total|stringformat:".02f" }} | ${{ actual_total|stringformat:".02f" }} |
{% trans "Not found no budget this month!" %}
{% endif %} {% endblock content %} {% block extra_js %} {% endblock extra_js %}