Change name of TOSidebar to TotalsBox

This commit is contained in:
Montana
2019-06-04 11:05:19 -04:00
parent a0a8c8e1f1
commit b365c4bde4
3 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
{% macro TotalsBox(task_order) -%}
<div class="col totals-box">
<div class="h4">Total obligated funds</div>
<div class="h3">$500,000</div>
<div>This is the funding allocated to cloud services. It may be 100% or a portion of the total task order budget.</div>
<hr>
<div class="h4">Total contract amount</div>
<div class="h3">{{ task_order.budget | 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>
{%- endmacro %}