{% load i18n %}

{% blocktrans with id=item.id creation_date=item.creation_date|date:"DATE_FORMAT" amount=item.amount %} We inform you that your invoice nr. {{ id }} issued on {{ creation_date }} of amount of {{ amount }}€ is available on {{ site_title }}. {% endblocktrans %}

{% if item.online_payment %}

{% blocktrans %}You can view and pay it online.{% endblocktrans %}

{% else %}

{% blocktrans %}You can view it by going on your {{ site_title }}.{% endblocktrans %}

{% if item.no_online_payment_reason == 'autobilling' %}

{% blocktrans with debit_date=item.payment_limit_date|date:"DATE_FORMAT" %} The amount of this invoice will be debited from your account at {{ debit_date }}. {% endblocktrans %}

{% endif %} {% endif %}