{% 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 "Unit amount" %} | {% trans "Quantity" %} | {% trans "Total amount" %} |
|---|---|---|---|---|
| {{ line.activity_label|default:" " }} | ||||
| {{ line.label }} | {% if not line.details.partial_bookings %} {% if line.details.check_type_label %} {{ line.details.check_type_label }} {% elif line.details.status == 'absence' %} {% if document_model == 'middle' %} {% trans "Absence" %} {% endif %} {% endif %} {% endif %} {% if document_model == 'middle' and line.display_description %} {{ line.description }} {% endif %} | {% 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 %} | |||
| {{ line.user_name }} | |
| {% trans "Services" %} | {% trans "Details" %} |
|---|---|
| {{ line.activity_label|default:" " }} | |
| {{ line.label }} | {% if not line.details.partial_bookings %} {% if line.details.check_type_label %} {{ line.details.check_type_label }} {% elif line.details.status == 'absence' %} {% trans "Absence" %} {% endif %} {% endif %} {{ line.description }} |