{% extends 'dashboard_base.html.twig' %} {% block title %}Liste facture{% endblock %} {% block body %}

Liste des factures

{% for invoice in listInvoice %} {% endfor %}
N° Facture Client Formation Date Session Action
{{ invoice.number }} {{ invoice.devis.client.firstname }} {{ invoice.devis.client.name|u.truncate(8, '...') }} {{ invoice.devis.formation.name }} {{ invoice.devis.dateSession|date("d/m/Y") }} {% if 'ADMIN' in app.user.roles %} {% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('confirmation') }} {% endblock %}