mirror of
https://gh.llkk.cc/https://github.com/WeblateOrg/hosted.git
synced 2026-07-31 09:55:51 +08:00
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.
20 lines
516 B
HTML
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 %}
|