{% extends 'base.html' %} {% load i18n %} {% load static %} {% load currency_symbol from django_ledger %} {% load custom_filters %} {% load widget_tweaks %} {% load crispy_forms_tags %} {% block content %}
| {% trans 'Item' %} | {% trans 'Quantity' %} | {% trans 'Avg Unit Price' %} | {% trans 'Total Contracted Cost' %} |
|---|---|---|---|
| {{ CURRENCY }}{{ ce_cost_estimate__sum | currency_format }} | |||
| {{ i.item_model__name }} | {{ i.ce_quantity__sum }} | {{ CURRENCY }}{{ i.avg_unit_cost | currency_format }} | {{ CURRENCY }}{{ i.ce_cost_estimate__sum | currency_format }} |