{% extends 'budget/base.html' %} {% load budget %} {% load cycle from future %} {% block title %}Year Summary For {{ start_date|date:"Y" }}{% endblock %} {% block budget_content %}
Category | {% for month in months %}{{ month }} | {% endfor %}Estimated Total | Actual Total | |
---|---|---|---|---|
{% else %} | {% endif %} {{ category.name }} | {% for data in monthly_data %}{{ data.actual_monthly_total_in_category }} | {% endfor %}{{ estimated_yearly_total_cat }} | {{ yearly_actual_total_cat }} |
Total: | {% for month in months %}{% endfor %} | ${{ budget.yearly_estimated_total|stringformat:".02f" }} | ${{ actual_yearly_total|stringformat:".02f" }} |