{% extends 'budget/base.html' %} {% load budget %} {% block title %}Year Summary For {{ year }}{% endblock %} {% block budget_content %}
| Category | Estimated Total | Actual Total |
|---|---|---|
| {{ cet_group.category.name }} {% if cet_group.transactions %} [+] {% endif %} | {{ cet_group.estimate.yearly_estimated_amount|stringformat:".02f" }} | ${{ cet_group.actual_amount|stringformat:".02f" }} |
| No data to show. | ||
| Total: | ${{ budget.yearly_estimated_total|stringformat:".02f" }} | ${{ actual_total|stringformat:".02f" }} |