{% load django_ledger %} {% load i18n %}
{% for i in inventory_list %} {% endfor %}
{% trans 'Item' %} {% trans 'UOM' %} {% trans 'Quantity' %} {% trans 'Value' %}
{{ i.item_model__name }} {{ i.item_model__uom__name }} {{ i.total_quantity | floatformat:3 }} {% currency_symbol %}{{ i.total_value | currency_format }}
{% trans 'Total Value' %} {% currency_symbol %}{{ inventory_total_value | currency_format }}