{% load django_ledger %} {% load i18n %}
{% trans 'Item' %} | {% trans 'Entity Unit' %} | {% trans 'Quantity' %} | {% trans 'Unit Cost' %} | {% trans 'Unit Sale Price' %} | {% trans 'Total Cost Estimate' %} | {% trans 'Total Revenue Estimate' %} |
---|---|---|---|---|---|---|
{{ ce_item.item_model }} | {% if ce_item.entity_unit %} {{ ce_item.entity_unit }}{% endif %} | {{ ce_item.ce_quantity }} | {% currency_symbol %}{{ ce_item.ce_unit_cost_estimate | currency_format }} | {% currency_symbol %}{{ ce_item.ce_unit_revenue_estimate | currency_format }} | {% currency_symbol %}{{ ce_item.ce_cost_estimate | currency_format }} | {% currency_symbol %}{{ ce_item.ce_revenue_estimate | currency_format }} |
{% trans 'Total' %} | {% currency_symbol %}{{ ce_model.get_cost_estimate | currency_format }} | {% currency_symbol %}{{ ce_model.get_revenue_estimate | currency_format }} |