{% extends "base.html" %} {% block title %}Tax Report{% endblock %} {% block content %}
| Month | Income | Direct Cost | Expenses | Net 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. | ||||