{% load static i18n lingo %}
{% trans "Description" %} | {% trans "Details" %} | {% trans "UA" context 'unit amount' %} | {% trans "QTY" context 'quantity' %} | {% trans "TA" context 'total amount' %} |
---|---|---|---|---|
{% if not line.details %}{{ line.event_date|date:"d/m/Y" }} - {% endif %}{{ line.label }}
{% if line.details.check_type_label %} {{ line.details.check_type_label }} {% elif line.details.status == 'presence' %} {% trans "Presence" %} {% elif line.details.status == 'absence' %} {% trans "Absence" %} {% endif %} |
{% if line.details.dates %} {% for d in line.details.dates %}{{ d|parse_date|date:"Dd" }}{% if not forloop.last %}, {% endif %}{% endfor %} {% endif %} | {% blocktrans with amount=line.unit_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} | {{ line.quantity }} | {% blocktrans with amount=line.total_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} |
{% trans "Payment deadline" %} | {% trans "Total due" %} |
---|---|
{{ invoice.date_payment_deadline }} | {% blocktrans with amount=invoice.total_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} |