{% extends 'budget/base.html' %} {% load budget %} {% load mptt_tags %} {% block title %}Month Summary For {{ start_date|date:"F Y" }}{% endblock title %} {% block budget_content %}
Category | Estimated Total | Actual Total |
---|---|---|
{{ cet_group.category.name }} {% if cet_group.transactions %} [+] {% endif %} {# cet_group.transactions #} | {{ cet_group.estimate.amount|stringformat:".02f" }} | {{ cet_group.actual_amount|stringformat:".02f" }} |
No data to show. | ||
Total: | ${{ estimated_total|stringformat:".02f" }} | ${{ actual_total|stringformat:".02f" }} |