{% extends 'base.html' %} {% load static %} {% block title %}{{ year }} Yearly Financial Report{% endblock %} {% block content %}
| Month | Revenue (XAF) | Expenses (XAF) | Net (XAF) |
|---|---|---|---|
| {{ row.month }} | {{ row.revenue|floatformat:0 }} | {{ row.expenses|floatformat:0 }} | {{ row.profit|floatformat:0 }} |
| TOTAL | {{ total_revenue|floatformat:0 }} | {{ total_expenses|floatformat:0 }} | {{ total_profit|floatformat:0 }} |