{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block view_content %}
{% trans 'Item' %} | {% trans 'Unit Cost' %} | {% trans 'Quantity' %} | {% trans 'Total' %} |
---|---|---|---|
{{ invoice_item.item_model }} | {% currency_symbol %}{{ invoice_item.unit_cost | currency_format }} | {{ invoice_item.quantity }} | {% currency_symbol %}{{ invoice_item.total_amount | currency_format }} |
{% trans 'Total' %} | {% currency_symbol %}{{ total_amount_due | currency_format }} |