- {% call Accordion("Expired Task Orders", "expired_task_orders", "h3") %}
- {% for task_order in expired_task_orders %}
-
- Task Order {{ task_order["number"] }}
-
-
-
Period of Performance
-
- {{ task_order["period_of_performance"].start_date | formattedDate(formatter="%B %d, %Y") }}
- -
- {{ task_order["period_of_performance"].end_date | formattedDate(formatter="%B %d, %Y") }}
-
-
-
-
Total Obligated
-
{{ task_order["total_obligated_funds"] | dollars }}
-
-
-
Total Expended
-
{{ task_order["expended_funds"] | dollars }}
-
-
-
Total Unused
-
{{ (task_order["total_obligated_funds"] - task_order["expended_funds"]) | dollars }}
-
- {% endfor %}
+ {% call Accordion(
+ "Expired funding",
+ "expired_funding",
+ heading_classes="reporting-expended-funding__header",
+ content_tag="table",
+ content_classes="atat-table reporting-expended-funding__content") %}
+
+
+ TO CLIN |
+ PoP |
+ CLIN Value |
+ Amount Obligated |
+ Amount Unspent |
+
+
+
+ {% for task_order in expired_task_orders %}
+
+
+
+ {{ task_order.number }} {{ Icon("caret_right", classes="icon--tiny icon--blue" ) }}
+
+ |
+
+ {% for clin in task_order.clins %}
+
+
+
+ {{ ("{}".format(clin.jedi_clin_type) | translate)[15:] }}
+ |
+
+ {{ clin.period_of_performance.start_date | formattedDate(formatter="%b %d, %Y") }}
+ -
+ {{ clin.period_of_performance.end_date | formattedDate(formatter="%b %d, %Y") }}
+ |
+ {{ clin.total_value | dollars }} |
+ {{ clin.total_obligated_funds | dollars }} |
+ {{ (clin.total_obligated_funds - clin.expended_funds) | dollars }} |
+
+ {% endfor %}
+ {% endfor %}
+
{% endcall %}