{% if this.project %}

{% if this.project.isClosed %}
{{ ux_icon('streamline-flex:padlock-square-1-remix', { class: 'w-5 h-5 text-red-600' }) }}
{% else %}
{{ ux_icon('streamline-flex:padlock-square-2-remix', { class: 'w-5 h-5 text-green-600' }) }}
{% endif %} {{ this.project.name }}

Prévu

{{ (this.project.budgetLimit / 100)|format_currency('EUR') }}

Dépensé

{{ (this.project.getTotalTransactions() / 100)|format_currency('EUR') }}

{{ this.remaining >= 0 ? 'Reste' : 'Dépassement' }}

{{ (this.remaining|abs / 100)|format_currency('EUR') }}

{% endif %}