{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load trans from i18n %} {% load static %} {% load django_ledger %} {% block view_content %}
{% trans 'Item' %} | {% trans 'PO Qty' %} | {% trans 'Unit Cost' %} | {% trans 'Amount' %} | {% trans 'Status' %} | {% trans 'Billed' %} |
---|---|---|---|---|---|
{{ item.item_model }} | {{ item.po_quantity }} | {{ item.po_unit_cost }} | {% currency_symbol %}{{ item.po_total_amount | currency_format }} | {% if item.po_item_status %} {{ item.get_po_item_status_display }} {% endif %} | {% if item.bill_model_id %} View Bill{% endif %} |
{% trans 'Total PO Amount' %} | {% currency_symbol %}{{ po_total_amount | currency_format }} |