{% extends 'accounting.html' %} {% load i18n widget_tweaks %} {% block content %} {{ block.super }}
{{ form.category|add_class:'form-control' }}

{{ report_name }}: {% now 'd.m.Y' %}

{% for object in products %} {% endfor %}
{% trans 'Bar code' %} {% trans 'Product name' %} {% trans 'Quantity' %} {% trans 'Price' %} {% trans 'Sum' %}
{{ forloop.counter }} {{ object.bar_code|default:'' }} {{ object.name }} {{ object.stock }} {{ object.price }} {{ object.subtotal }}
{% trans 'Total' %}: {{ totals.qty }} {{ totals.grand_total }}
{% endblock %}