{% extends "mail/base.html" %} {% load i18n %} {% block content %}

{% blocktranslate with date=planned_disable|date:"SHORT_DATE_FORMAT" %}Recurring annual payment for your billing plan will be disabled on {{ date }} because the covered projects seem abandoned.{% endblocktranslate %}

{% with projects=billing.projects.all %} {% if projects %}

{% translate "This billing plan covers the following projects:" %}

{% endif %} {% endwith %}

{% translate "The projects will remain available, but the next payment will need to be made manually." %}

{% if payment_enabled %}
{% translate "Change plan or payment method" %}
{% endif %} {% endblock content %}