{% extends 'budget/base.html' %} {% load budget %} {% load mptt_tags %} {% block title %}Month Summary For {{ start_date|date:"F Y" }}{% endblock title %} {% block budget_content %}

Month Summary For {{ start_date|date:"F Y" }}

{{ budget.name }}

{% if categories_estimates_and_transactions %} {% for cet_group in categories_estimates_and_transactions %} {% endfor %} {# cet_group in estimates_and_transactions #} {% else %} {% endif %}
Category Estimated Total Actual Total
{{ cet_group.category.name }} {% if cet_group.transactions %} [+] {% for trans in cet_group.transactions %} {% endfor %}
{{ trans.notes }} {{ trans.date|date:"m/d/Y" }} ${{ trans.amount|stringformat:".02f" }}
{% 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" }}
{% endblock budget_content %}