Mes Comptes
Gérez vos comptes bancaires
{% for account in accounts %}
{% else %}
{% endfor %}
{% 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.status }}
{{ "%.2f"|format(account.balance) }} €
{{ account.account_number }}
Ouvert le {{ account.created_at[:10] if account.created_at else 'N/A' }}
{% if account.interest_rate > 0 %}
Taux: {{ "%.2f"|format(account.interest_rate * 100) }}%
{% endif %}