{% extends "layouts/base.html" %} {% load money %} {% block title %}Kakebo - Year {{ year }}{% endblock %} {% block content %}

Year

{% if has_prev_year %} {% else %} {% endif %} {{ year }} {% if is_current_year %} {% else %} {% endif %}
{# Annual summary: Income vs Fixed expenses #}

Annual summary

Total income

{{ total_income|money }} €

Fixed expenses

{{ total_fe|money }} €

Variable expenses

{{ total_expenses|money }} €

{# Expenses by category #}

Expenses by category

{% if category_totals %}
{% for cat in category_totals %} {% endfor %}
Category Total
{{ cat.name }} {{ cat.total|money }} €
Total {{ total_expenses|money }} €
{% else %}

No expenses this year

{% endif %}
{# Monthly evolution per category #}

Monthly evolution

{# Planned expenses #}

Planned expenses

{% include "pages/yearly/partials/planned_tables.html" %}
{% endblock %}