{% load i18n %}
{% trans 'Action' %} | {% trans 'Date' %} | {% trans 'Product' %} | {% trans 'Quantity' %} | {% trans 'Price' %} | {% trans 'Subtotal (Retail)' %} |
---|---|---|---|---|---|
{{ item.invoice.get_type_display }} | {{ item.invoice.created }} | {{ item.product_name }} | {{ item.qty }} | {{ item.price_with_discount|stringformat:".2f" }} | {{ item.subtotal_with_discount|stringformat:".2f" }} |
{% trans 'Action' %} | {% trans 'Date' %} | {% trans 'Product' %} | {% trans 'Quantity' %} | {% trans 'Price' %} | {% trans 'Subtotal (Retail)' %} |
---|---|---|---|---|---|
{{ item.invoice.get_type_display }} | {{ item.invoice.created }} | {{ item.product_name }} | {{ item.qty }} | {{ item.price|stringformat:".2f" }} | {{ item.subtotal|stringformat:".2f" }} |