hosted/wlhosted/integrations/templates/mail/billing_paid.html
Michal Čihař 627888bbd3 Send notification when billing scheduled for removal has been paid
This avoids potential confusion as the user got email about scheduled
removal and then there is silence because the invoice is sent only to
the user who has paid it.
2020-05-11 17:14:27 +02:00

20 lines
516 B
HTML

{% extends "mail/base.html" %}
{% load i18n %}{% load translations %}
{% block content %}
<p>{% trans "Thank you for the payment, your billing is now paid." %}</p>
<p>{% trans "This billing plan covers following projects:" %}</p>
<ul>
{% for project in billing.projects.all %}
<li><a href="{{ project.get_absolute_url }}">{{ project }}</a></li>
{% endfor %}
</ul>
<div class="line buttons">
<a href="{% url 'billing' %}" class="button">{% trans "Check your billing status" %}</a>
</div>
{% endblock %}