{% load i18n invoice %} {% block head %} {{ invoice }} {% block css %} {% endblock css %} {% endblock head %} {% block body %}

{{ invoice }}


{% trans "Seller" %} {% trans "Billing to" %}
{{invoice.contractor.as_text|linebreaksbr}} {{invoice.subscriber.as_text|linebreaksbr}}

{% trans "Date issued" %}: {{ invoice.date_issued|date:"SHORT_DATE_FORMAT"}}
{% trans "Date due" %}: {{ invoice.date_due|date:"SHORT_DATE_FORMAT"}}
{% trans "Bank account" %}: {{ invoice.contractor_bank }}
{% trans "Variable symbol" %}: {{ invoice.uid }}

{% for item in invoice.items.all %} {% endfor %}
{% trans "Description" %} {% trans "Qty" %} {% trans "Unit price" %} {% trans "Tax" %} {% trans "Total" %}
{{ item.description }} {{ item.quantity }} {{ item.unit_price|as_currency }} {{ item.tax }}% {{ item.total|as_currency }}
{% endblock body %}