Update Totals box text and use translations

This commit is contained in:
leigh-mil
2019-06-18 13:57:00 -04:00
parent c91ad961a2
commit f1b2825ab5
3 changed files with 17 additions and 12 deletions

View File

@@ -6,15 +6,15 @@
{% set contract_amount = task_order.total_contract_amount %}
{% endif %}
<div class="h4">Total obligated funds</div>
<div class="h4">{{ 'components.totals_box.obligated_funds' | translate }}</div>
<div class="h3">{{ obligated_funds | dollars }}</div>
<div>This is the funding allocated to cloud services. It may be 100% or a portion of the total task order budget.</div>
<div>{{ 'components.totals_box.obligated_text' | translate }}</div>
<hr>
<div class="h4">Total contract amount</div>
<div class="h4">{{ 'components.totals_box.total_amount' | translate }}</div>
<div class="h3">{{ contract_amount | dollars }}</div>
<div>This is the value of all funds obligated for this contract, including -- but not limited to -- funds obligated for the cloud.</div>
<div>{{ 'components.totals_box.total_text' | translate }}</div>
</div>