Bienvenue {{ user.get('first_name', '') }} 🐉
Voici un aperçu de vos finances
{{ "%.2f"|format(stats.get('total_balance', 0)) }} €
Solde total
{{ stats.get('total_accounts', 0) }}
Comptes actifs
{{ stats.get('monthly_transactions', 0) }}
Transactions ce mois
{{ stats.get('total_beneficiaries', 0) }}
Bénéficiaires
Mes Comptes
Ouvrir un compte
{% if account.account_type == 'courant' %}
Compte Courant
{% elif account.account_type == 'livret_a' %}
Livret A
{% elif account.account_type == 'assurance_vie' %}
Assurance Vie
{% endif %}
{{ account.account_number }}
{{ "%.2f"|format(account.balance) }} €
{% if account.interest_rate > 0 %}
{{ "%.2f"|format(account.interest_rate * 100) }}% / jour
{% endif %}
Aucun compte trouvé
Actions rapides
Dernières opérations
Voir tout
{{ tx.description[:40] }}{% if tx.description|length > 40 %}...{% endif %}
{{ tx.created_at[:10] if tx.created_at else '' }}
{{ "%.2f"|format(tx.amount) }} €
Aucune transaction récente
{% endif %}