Income & Expense Summary
{% if selected_year %}
Year: {{ selected_year }}
{% else %}
All Years
{% endif %}
Category |
Amount |
{% for row in income_category_totals %}
{{ row.category__category }} |
$ {{ row.total|floatformat:2|intcomma }} |
{% empty %}
No income category data found. |
{% endfor %}
{% if income_category_totals %}
Total: |
$ {{ income_category_total|floatformat:2|intcomma }} |
{% endif %}
Sub-Category |
Amount |
{% for row in income_subcategory_totals %}
{{ row.sub_cat__sub_cat }} |
$ {{ row.total|floatformat:2|intcomma }} |
{% empty %}
No income sub-category data found. |
{% endfor %}
{% if income_subcategory_totals %}
Total: |
$ {{ income_subcategory_total|floatformat:2|intcomma }} |
{% endif %}
Category |
Amount |
{% for row in expense_category_totals %}
{{ row.category__category }} |
$ {{ row.total|floatformat:2|intcomma }} |
{% empty %}
No expense category data found. |
{% endfor %}
{% if expense_category_totals %}
Total: |
$ {{ expense_category_total|floatformat:2|intcomma }} |
{% endif %}
Sub-Category |
Amount |
{% for row in expense_subcategory_totals %}
{{ row.sub_cat__sub_cat }} |
$ {{ row.total|floatformat:2|intcomma }} |
{% empty %}
No expense sub-category data found. |
{% endfor %}
{% if expense_subcategory_totals %}
Total: |
$ {{ expense_subcategory_total|floatformat:2|intcomma }} |
{% endif %}
Net: $ {{ net_profit|floatformat:2|intcomma }}