atst/templates/components/totals_box.html
Montana e4cbe892fc Use clin values to render budget information
- creates a relationship `clins` on task order model
- two properties on task order model to calculate budget amounts
2019-06-05 09:40:10 -04:00

17 lines
616 B
HTML

{% macro TotalsBox(task_order) -%}
<div class="col totals-box">
<div class="h4">Total obligated funds</div>
<div class="h3">{{ task_order.total_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>
<hr>
<div class="h4">Total contract amount</div>
<div class="h3">{{ task_order.total_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>
{%- endmacro %}