{% extends 'index.html' %} {% load static %} {% load l10n %} {% load humanize %} {% block title %}Income Statement{% endblock %} {% block content %}
Year Filter

Airborne Images

Income Statement

Income

{% for row in income_transactions %} {% empty %} {% endfor %}
Subcategory Total Amount
{{ row.sub_cat__sub_cat }} $ {{ row.total|floatformat:2|intcomma }}
No income transactions found.
Total Income $ {{ total_income|floatformat:2|intcomma }}

Expenses

{% for row in expense_transactions %} {% empty %} {% endfor %}
Subcategory Total Amount
{{ row.sub_cat__sub_cat }} -$ {{ row.total|floatformat:2|intcomma }}
No expense transactions found.
Total Expenses $ {{ total_expenses|floatformat:2|intcomma }}

Net Profit/Loss:

$ {{ net_profit|floatformat:2|intcomma }}

{% endblock %}