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

Current Obligated funds

As of {{ retrieved | formattedDate(formatter="%B %d, %Y at %H:%M") }}
{% for JEDI_clin in current_obligated_funds %} {% set remaining_funds = JEDI_clin.obligated - (JEDI_clin.invoiced + JEDI_clin.estimated) %}

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

Total obligated amount: {{ JEDI_clin.obligated | dollars }}

{% if remaining_funds < 0 %} {% else %} {% set invoiced_width = (JEDI_clin.invoiced, JEDI_clin.obligated) | obligatedFundingGraphWidth %} {% if invoiced_width %} {% endif %} {% set estimated_width = (JEDI_clin.estimated, JEDI_clin.obligated) | obligatedFundingGraphWidth %} {% if estimated_width %} {% endif %} {% endif %}

Invoiced expended funds:

{{ JEDI_clin.invoiced | dollars }}

Estimated expended funds:

{{ JEDI_clin.estimated | dollars }}

0 else "insufficient"}}"> 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 %}