{% macro TotalsBox(task_order=None, obligated_funds=0, contract_amount=0) -%}
{% if task_order %} {% set obligated_funds = task_order.total_obligated_funds %} {% set contract_amount = task_order.total_contract_amount %} {% endif %}
Total obligated funds
{{ obligated_funds | dollars }}
This is the funding allocated to cloud services. It may be 100% or a portion of the total task order budget.

Total contract amount
{{ contract_amount | dollars }}
This is the value of all funds obligated for this contract, including -- but not limited to -- funds obligated for the cloud.
{%- endmacro %}