{% set fluxs = getAllFlux(app.user, app.request) %} {% set title = title|default('Opérations'|trans) %} {% if fluxs and fluxs.getTotalItemCount > 0 %} {% set idcard = 'transactions' %} {% extends '@kohinos/block/block_collapse.html.twig' %} {% block blocktitle %} {{ title }} {% endblock blocktitle %} {% block blocksubtitle %} {% endblock blocksubtitle %} {% block blockcontent %}
{% for flux in fluxs %} {% if flux.type == 'reconversion' %} {% else %} {% endif %} {% endfor %}
Date Type Expediteur Destinataire Montant
{{flux.createdAt|date('d/m/Y H:i')}}Demande de reconversion{{ flux.type|capitalize|replace({'_' : ' '}) }}{{flux.expediteur}} {{flux.destinataire}} {{flux.montant}}

{% endblock blockcontent %} {% endif %}