{% extends "base.html" %} {% block title %}Tax Report{% endblock %} {% block content %}

🧾 Monthly Tax Report

{% for r in report %}{% else %}{% endfor %}
MonthIncomeDirect CostExpensesNet Profit
{{ r.month }}{{ '%.2f'|format(r.income) }}{{ '%.2f'|format(r.direct_cost) }}{{ '%.2f'|format(r.expenses) }}{{ '%.2f'|format(r.net_profit) }}
No data for this year.
{% endblock %}