{% load i18n %} {% load humanize %}
Item | Quantity | Unit price | Total price |
---|---|---|---|
{{ project.grouper }} |
|||
{{ item.name }}
{% trans "Start time" %}: {{ item.start | date:"Y-m-d H:i" }}.
{% trans "End time" %}: {{ item.end | date:"Y-m-d H:i" }}.
|
{{ item.quantity }} | €{{ item.unit_price | floatformat:2 | intcomma }} | €{{ item.total | floatformat:2 | intcomma }} |
{% trans "Subtotal" %} | €{{ invoice.price | floatformat:2 | intcomma}} |
{% trans "VAT" %} | € {{ invoice.tax | floatformat:2 | intcomma}} |
{% trans "TOTAL" %} | €{{ invoice.total | floatformat:2 | intcomma}} |