{% extends 'base.html' %} {% load static %} {% block title %}{{ year }} Yearly Financial Report{% endblock %} {% block content %}

{{ year }} Annual Financial Report

Back
Total Revenue
{{ total_revenue|floatformat:0 }} XAF
Total Expenses
{{ total_expenses|floatformat:0 }} XAF
Net Profit
{{ total_profit|floatformat:0 }} XAF
Monthly Breakdown
{% for row in monthly_data %} {% endfor %}
MonthRevenue (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 }}
{% endblock %}