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