{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block view_content %}
{% trans 'Item' %} | {% trans 'Entity Unit' %} | {% trans 'Unit Cost' %} | {% trans 'Quantity' %} | {% trans 'Total' %} | {% trans 'PO' %} |
---|---|---|---|---|---|
{{ bill_item.item_model }} | {% if bill_item.entity_unit %} {{ bill_item.entity_unit }}{% endif %} | {% currency_symbol %}{{ bill_item.unit_cost | currency_format }} | {{ bill_item.quantity }} | {% currency_symbol %}{{ bill_item.total_amount | currency_format }} | {% if bill_item.po_model_id %} {% trans 'View PO' %} {% endif %} |
{% trans 'Total' %} | {% currency_symbol %}{{ total_amount__sum | currency_format }} |