{% extends "lingo/invoicing/print_document_base.html" %} {% load i18n %} {% block document-label %}{{ credit.label }}{% endblock %} {% block informations %}
{{ line.user_name }} | ||||
{% trans "Services" %} | {% trans "Details" %} | {% trans "UA" context 'unit amount' %} | {% trans "QTY" context 'quantity' %} | {% trans "TA" context 'total amount' %} |
---|---|---|---|---|
{% ifchanged line.user_external_id line.label %}
{{ line.label }}
{% if line.activity_label %} {{ line.activity_label }} {% endif %} {% endifchanged %} {% if line.details.check_type_label %} {{ line.details.check_type_label }} {% elif line.details.status == 'absence' %} {% if document_model == 'middle' or line.details.partial_bookings %} {% trans "Absence" %} {% endif %} {% endif %} |
{{ line.description }} | {% blocktrans with amount=line.unit_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} | {{ line.quantity|floatformat }} | {% blocktrans with amount=line.total_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} |
{% trans "Total amount:" %} | {% blocktrans with amount=credit.total_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} |