{% load static i18n lingo %}
| {% trans "Invoice number" %} | {% trans "Invoice object" %} | {% trans "Amount charged" %} | {% trans "Amount payed" %} |
|---|---|---|---|
| {{ line.invoice.formatted_number }} | {{ line.invoice.label }} | {% blocktrans with amount=line.invoice.total_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} | {% blocktrans with amount=line.amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} |
| {% trans "Payment type" %} | {% trans "Total" %} |
|---|---|
| {{ payment.payment_type }} | {% blocktrans with amount=payment.amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %} |