mirror of
https://gh.llkk.cc/https://github.com/WeblateOrg/hosted.git
synced 2026-07-22 10:12:21 +08:00
22 lines
564 B
HTML
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 %}
|