+ {% for JEDI_clin, funds in current_obligated_funds.items() %}
+ {% set remaining_funds = (funds["obligated_funds"] - funds["expended_funds"]) %}
+
+
+
+
+
-
-
Remaining funds:
-
{{ (funds["obligated_funds"] - funds["expended_funds"]) | dollars }}
+
+
+
+
+
{{ remaining_funds | dollars }}
+
+
-
-
Funds expended to date:
-
{{ funds["expended_funds"] | dollars }}
-
-
- {% endfor %}
+ {% endfor %}
+
diff --git a/templates/portfolios/reports/portfolio_summary.html b/templates/portfolios/reports/portfolio_summary.html
index e29e96be..55922812 100644
--- a/templates/portfolios/reports/portfolio_summary.html
+++ b/templates/portfolios/reports/portfolio_summary.html
@@ -3,34 +3,34 @@
-
-
- Total Portfolio Value
- {{Tooltip(("common.lorem" | translate), title="")}}
-
-
{{ total_portfolio_value | dollars }}
+
+
+
{{ total_portfolio_value | dollars }}
-
-
- Funding Duration
- {{Tooltip(("common.lorem" | translate), title="")}}
-
+
+
{% set earliest_pop_start_date, latest_pop_end_date = portfolio.funding_duration %}
{% if earliest_pop_start_date and latest_pop_end_date %}
-
+
{{ earliest_pop_start_date | formattedDate(formatter="%B %d, %Y") }}
-
{{ latest_pop_end_date | formattedDate(formatter="%B %d, %Y") }}
{% else %}
-
-
+
-
{% endif %}
-
-
- Days Remaining
- {{Tooltip(("common.lorem" | translate), title="")}}
-
-
{{ portfolio.days_to_funding_expiration }} days
+
+
+
{{ portfolio.days_to_funding_expiration }} days
\ No newline at end of file
diff --git a/translations.yaml b/translations.yaml
index ea0ddca9..387aecec 100644
--- a/translations.yaml
+++ b/translations.yaml
@@ -182,10 +182,6 @@ forms:
none: Not planning to migrate any applications
not_sure: Not sure
on_premise: 'Yes, migrating from an on-premise data center'
- clin_01_label: 'IaaS/PaaS (IDIQ CLIN 0001)'
- clin_02_label: 'IDIQ CLIN 0002'
- clin_03_label: 'IDIQ CLIN 0003'
- clin_04_label: 'IDIQ CLIN 0004'
complexity:
conus: CONUS access
data_analytics: Data analytics
@@ -450,6 +446,7 @@ portfolios:
portfolio_mgmt: Portfolio management
reporting: Reporting
reports:
+ estimate_warning: Reports displayed in JEDI are estimates and not a system of record.
empty_state:
message: Nothing to report.
sub_message:
@@ -519,10 +516,10 @@ task_orders:
sign:
digital_signature_description: I acknowledge that the uploaded task order contains the required KO signature.
JEDICLINType:
- JEDI_CLIN_1: 'Unclassified IaaS and PaaS (IDIQ CLIN 0001)'
- JEDI_CLIN_2: 'Classified IaaS and PaaS (IDIQ CLIN 0002)'
- JEDI_CLIN_3: 'Unclassified Cloud Support Package (IDIQ CLIN 0003)'
- JEDI_CLIN_4: 'Classified Cloud Support Package (IDIQ CLIN 0004)'
+ JEDI_CLIN_1: 'IDIQ CLIN 0001 Unclassified IaaS/PaaS'
+ JEDI_CLIN_2: 'IDIQ CLIN 0002 Classified IaaS/PaaS'
+ JEDI_CLIN_3: 'IDIQ CLIN 0003 Unclassified Cloud Support Package'
+ JEDI_CLIN_4: 'IDIQ CLIN 0004 Classified Cloud Support Package'
testing:
example_string: Hello World
example_with_variables: 'Hello, {name}!'