{{ "%.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 accounts %} {% for account in accounts %} {% endfor %} {% else %}

Aucun compte trouvé

{% endif %}

Dernières opérations

Voir tout
{% if recent_transactions %} {% for tx in recent_transactions %}
{{ tx.description[:40] }}{% if tx.description|length > 40 %}...{% endif %}
{{ tx.created_at[:10] if tx.created_at else '' }}
{{ "%.2f"|format(tx.amount) }} €
{% endfor %} {% else %}

Aucune transaction récente

{% endif %}