publik-base-theme/templates/lingo/combo/invoice_email_notification_...

20 lines
754 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "emails/body_base.html" %}
{% block content %}
<p>Votre facture n° {{ invoice.id }}, émise le {{ invoice.creation_date|date:"DATE_FORMAT" }}
dun montant de {{ invoice.amount }}€ est disponible.</p>
<p>Vous avez la possibilité de <a href="{{ portal_url }}">la voir en ligne</a>.</p>
{% if invoice.online_payment %}
<p>
Pour la régler en ligne, veuillez cliquer sur le bouton suivant :
</p>
{% include "emails/button-link.html" with url=payment_url label="Régler en ligne" %}
{% endif %}
{% if invoice.no_online_payment_reason == 'autobilling' %}
<p>Le montant de la facture sera débité de votre compte le {{ invoice.payment_limit_date|date:"DATE_FORMAT" }}.</p>
{% endif %}
{% endblock %}