{% load i18n %}

{% blocktrans with number=item.display_id %} Item nr. {{ number }} {% endblocktrans %}

{% blocktrans with label=item.subject %} Label: {{ label }} {% endblocktrans %}

{% blocktrans with amount=item.total_amount %} Total amount: {{ amount }}€ {% endblocktrans %}

{% if item.amount %}

{% blocktrans with amount=item.amount %} Amount to pay: {{ amount }}€ {% endblocktrans %}

{% endif %}

{% trans "Issued on : " %} {{ item.creation_date|date:"SHORT_DATE_FORMAT" }}

{% if item.payment_date %}

{% trans "Payed on : " %} {{ item.payment_date|date:"SHORT_DATE_FORMAT" }}

{% endif %} {% if item.online_payment %} {% csrf_token %} {% endif %}