{% load static i18n %} {{ invoice.formatted_number }}

{% trans "Invoice" %}

{% trans "Invoice number" %}
{{ invoice.formatted_number }}
{% trans "Date" %}
{{ invoice.created_at|date }}
{% for line in lines %} {% endfor %}
{% trans "Description" %} {% trans "Beneficiary" %} {% trans "Price" %} {% trans "Quantity" %} {% trans "Subtotal" %}
{{ line.label }} {{ line.user_first_name}} {{ line.user_last_name}} {{ line.unit_amount }} {{ line.quantity }} {{ line.total_amount }}
{% trans "Payment deadline" %} {% trans "Total due" %}
{{ invoice.date_payment_deadline }} {{ invoice.total_amount }}