{% extends "base.html" %} {% block title %}Tax Summary {{ report.year }}{% endblock %} {% block page_title %}Tax Year Summary{% endblock %} {% block topbar_actions %} Export CSV {% endblock %} {% block content %}
{{ report.date_from.strftime('%b %d, %Y') }} – {{ report.date_to.strftime('%b %d, %Y') }}
Total Income
{{ report.total_income | currency }}
Total Expenses
{{ report.total_expense | currency }}
Net for Year
{{ report.net | currency }}
Income Sources
{{ report.income_categories | length }}
Income by Source
{% if report.income_categories %} {% for cat in report.income_categories %} {% endfor %} {% else %} {% endif %}
CategoryTotal
{{ cat.name }}
{{ cat.total | currency }}
Total {{ report.total_income | currency }}
No income recorded
Expenses by Category
{% if report.expense_categories %} {% for cat in report.expense_categories %} {% endfor %} {% else %} {% endif %}
CategoryTotal
{{ cat.name }}
{{ cat.total | currency }}
Total {{ report.total_expense | currency }}
No expenses recorded
{% if report.income_transactions %}
All Income — {{ report.year }} {{ report.income_transactions | length }} transactions
{% for txn in report.income_transactions %} {% endfor %}
DateDescriptionCategoryAmount
{{ txn.date.strftime('%b %d, %Y') }} {{ txn.description }} {{ txn.category.name if txn.category else '—' }} +{{ txn.amount | currency }}
{% endif %}
Back to Reports
{% endblock %}