{% extends 'admin/base_site.html' %} {% load i18n static notify categories %} {% block content %}

{{ invoice.model_name }} #{{ invoice.id }} ({{ invoice.get_type_display }}) {{ invoice.created|date:'d.m.Y' }}

{% trans 'Print' %}
{% include 'invoices/product-select-list.html' %} {% for item in invoice.items.all %} {{ item.render }} {% endfor %}
{% trans 'Code' %} {% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Price' %}
{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block js %} {{ block.super }} {% notify_js %} {% endblock %}