{% from "components/icon.html" import Icon %}

Current Obligated funds

As of {{ now | formattedDate(formatter="%B %d, %Y at %H:%M") }}
{% for JEDI_clin, funds in current_obligated_funds.items() %} {% set remaining_funds = (funds["obligated_funds"] - funds["expended_funds"]) %}

{{ "JEDICLINType.{}".format(JEDI_clin) | translate }}

Total obligated amount: {{ funds["obligated_funds"] | dollars }}

Funds expended:

{{ funds["expended_funds"] | dollars }}

Remaining funds:

{{ remaining_funds | dollars }}

{% endfor %}

Active Task Orders

{% for task_order in portfolio.active_task_orders %} {{ task_order.number }} {{ Icon("caret_right", classes="icon--tiny icon--blue" ) }} {% endfor %}