{% extends 'admin/base_site.html' %} {% load i18n widget_tweaks %} {% block content %}

{% trans 'Daily report' %} ({{ form.date.value }})

{{ form.errors }}
{{ form.date|add_class:'form-control'|attr:'autocomplete:off' }}
{% for invoice in invoices %} {% for item in invoice.items.all %} {% endfor %} {% endfor %}
{% trans 'Product' %} {% trans 'Code' %} {% trans 'Quantity' %} {% trans 'Price' %}
{{ item.product.name }} {{ item.product.code }} {{ item.qty }} {{ item.printable_price }}
{% endblock %}