{% extends 'base.html.twig' %} {% block title %}Mes comptes {% endblock %} {% block body %}

Mes comptes {{ type == 'archived' ? ' - Archives' }}

{% if type == 'archived' %} Actifs {% else %} Clôturés {% endif %} Nouveau compte
{% for type, data in accounts %}

{{ data.type.label }}

{% for account in data.accounts %}
{{ account.name }} {{ account.isActive ? '' : ' - Compte clos' }}
{% if account.type.icon %} {{ ux_icon(account.type.icon, {'class': 'w-4 h-4'}) }} {% endif %} {{ account.type.label }} {% if account.subtype %} • {{ account.subtype.label }} {% endif %}
{{ (account.balance / 100)|format_currency('EUR') }}
{% else %}
Aucun compte défini.
{% endfor %}
{% endfor %}
{% endblock %}