{% extends '@kohinos/common/layout.html.twig' %} {% block content %}
| {{ 'Date'|trans }} | {{ 'Montant'|trans }} | {{ 'Type'|trans }} | {{ 'Moyen'|trans }} | {{ 'Operation'|trans }} | {{ 'Référence'|trans }} |
|---|---|---|---|---|---|
| {{ operation.createdAt|date('d/m/Y') }} | {{ (operation.montant < 0)? '- ':'+ ' }} {{ operation.montant|abs|number_format(2) }} | {{ ((isCurrentAccountable(app.user, operation.flux.expediteur) ? 'exp' : 'des')~'_'~operation.flux.parenttype)|trans({}, 'flux') }} | {{ operation.flux.moyen|trans }} | {% if not isCurrentAccountable(app.user, operation.flux.expediteur) %} {{ operation.flux.expediteur }} {% elseif not isCurrentAccountable(app.user, operation.flux.destinataire) %} {{ operation.flux.destinataire }} {% endif %} | {{ operation.flux.reference }} |