{% 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 %}
| Category | Total |
|---|---|
|
{{ cat.name }}
|
{{ cat.total | currency }} |
| Total | {{ report.total_income | currency }} |
| No income recorded | |
| Category | Total |
|---|---|
|
{{ cat.name }}
|
{{ cat.total | currency }} |
| Total | {{ report.total_expense | currency }} |
| No expenses recorded | |
| Date | Description | Category | Amount |
|---|---|---|---|
| {{ txn.date.strftime('%b %d, %Y') }} | {{ txn.description }} | {{ txn.category.name if txn.category else '—' }} | +{{ txn.amount | currency }} |