hosted/wlhosted/integrations/templates/mail/billing_paid.html
Michal Čihař 24ef1c942c feat: add support for inviting from weblate.org
This allows to add users to newly added service from there.
2026-05-26 17:14:18 +02:00

22 lines
564 B
HTML

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