Total Alloué
{{ object.totalBudget | format_currency(object.currency, {fraction_digit: 0}) }}
100% du budget
Total Engagé
{{ object.getTotalCommittedBudget | format_currency(object.currency, {fraction_digit: 0}) }}
{% if object.totalBudget > 0 %}
{{ (object.getTotalCommittedBudget / object.totalBudget * 100) | round(2) }}% du budget
{% else %}
N/A
{% endif %}
Total Décaissé
{{ object.totalDisbursedBudget | format_currency(object.currency, {fraction_digit: 0})}}
{% if object.totalBudget > 0 %}
{{ (object.totalDisbursedBudget / object.totalBudget * 100) | round(2) }}% du budget
{% else %}
N/A
{% endif %}
Restant à engager
{{ object.totalRemainingBudget | format_currency(object.currency, {fraction_digit: 0})}}
{% if object.totalBudget > 0 %}
{{ (object.totalRemainingBudget / object.totalBudget * 100) | round(2) }}% du budget
{% else %}
N/A
{% endif %}