{% extends 'base.html.twig' %} {% block body %}

Transactions périodiques {{ mode == 'archived' ? ' - Archives' }}

{% if mode == 'actives' %} Nouvelle Archivées {% else %} Actives {% endif %}
{% for item in items %}
{{ item.label }} {% if item.isActive %} Actif {% else %} Inactif {% endif %}
{{ item.account.name }} · {{ item.frequency.label }}
{{ item.endDate ? "Du" : 'A partir du' }} {{ item.startDate ? item.startDate|date('d/m/Y') : 'Aucune' }} {% if item.endDate %} au {{ item.endDate ? item.endDate|date('d/m/Y') : 'Aucune' }} {% endif %}
Prochaine exécution : {{ item.nextExecution ? item.nextExecution|date('d/m/Y') : 'Aucune' }}
{{ (item.amount / 100)|format_currency('EUR') }}
{{ item.type.label }}
{% if item.isArchived %}
{% else %}
{{ ux_icon('streamline-freehand:edit-pencil', { class: 'w-5 h-5' }) }}
{% endif %}
{% else %}
Aucune transaction périodique
{% endfor %}
{% endblock %}