{% extends "base.html" %} {% block title %}Accueil - Analyse Bancaire{% endblock %} {% block content %}

Tableau de bord

{% if stats %}
Total Transactions

{{ stats.total_transactions|default(0) }}

Total Revenus

{{ "%.2f"|format(stats.total_revenus|default(0)) }} €

Total Dépenses

{{ "%.2f"|format(stats.total_depenses|default(0)) }} €

Solde Net

{{ "%.2f"|format((stats.total_revenus|default(0)) - (stats.total_depenses|default(0))) }} €

{% endif %}
{% if monthly_summary %}
Résumé mensuel
{% for month in monthly_summary %} {% endfor %}
Mois Revenus Dépenses Solde Net Transactions Actions
{{ month.mois }}/{{ month.annee }} {{ "%.2f"|format(month.revenus|default(0)) }} € {{ "%.2f"|format(month.depenses|default(0)) }} € {{ "%.2f"|format((month.revenus|default(0)) - (month.depenses|default(0))) }} € {{ month.nb_transactions|default(0) }} Détails
{% endif %} {% if processed_files %}
Fichiers traités
{% for file in processed_files %}
{{ file }}
{% endfor %}
{% endif %} {% if not stats and not monthly_summary %}

Aucune donnée disponible

Commencez par analyser vos relevés bancaires pour voir vos données ici.

{% endif %} {% endblock %}