{% set project = this.project %} {% if project %}

{{ project.name }}


{% for transaction in this.transactions %}
{{ transaction.label }}
{{ transaction.transactionDate|format_date(pattern='EEE d MMMM', locale='fr') }}
{{ transaction.type.sign ~ ' ' ~ (transaction.amount / 100)|format_currency('EUR') }}
{% else %}
Aucune transaction pour cet évènement.
{% endfor %}
{% endif %}