{% extends 'base.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% load custom_filters %} {% block title %}Bill Details - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block 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 }} | ||||