{% if selected_account %} {% endif %}
{% if transactions %}
{% for t in transactions %} {% endfor %}
Date Type Libellé De / Vers Montant Statut
{{ t.created_at[:16].replace('T', ' ') if t.created_at else 'N/A' }} {% if t.transaction_type == 'virement_interne' %} Interne {% elif t.transaction_type == 'virement_entre_personnes' %} Personne {% elif t.transaction_type == 'virement_externe' %} Externe {% elif t.transaction_type == 'depot' %} Dépôt {% elif t.transaction_type == 'retrait' %} Retrait {% elif t.transaction_type == 'interets' %} Intérêts {% else %} {{ t.transaction_type }} {% endif %} {{ t.description or '—' }} {% if t.from_account_number %}{{ t.from_account_number }}{% endif %} {% if t.from_account_number and t.to_account_number %}{% endif %} {% if t.to_account_number %}{{ t.to_account_number }}{% endif %} {% if t.external_bank_name %} {{ t.external_bank_name }}{% endif %} {{ "%.2f"|format(t.amount) }} € {% if t.status == 'completed' %} Effectué {% elif t.status == 'pending' %} En cours {% elif t.status == 'failed' %} Échoué {% else %} {{ t.status }} {% endif %}
{{ transactions|length }} transaction(s) affichée(s) Exporter en CSV
{% else %}

Aucune transaction

Votre historique apparaîtra ici après vos premiers virements.

Effectuer un virement
{% endif %}