{% extends 'accounting.html' %} {% load i18n widget_tweaks %} {% block content %} {{ block.super }}
{{ form.categories|add_class:'form-control' }} {% trans 'Select all' %} / {% trans 'Cancel all' %}

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

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