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

{% trans "Your billing plan has expired, if you want to continue using the service, please renew it." %}

{% trans "This billing plan covers following projects:" %}

{% if final_removal %}

{% trans "All projects covered by this billing plan have been removed." %}

{% else %} {% if billing.removal %}

{% blocktrans with date=billing.removal|date:"SHORT_DATE_FORMAT" %}If you don't perform the payment, all projects within this billing plan will be removed on {{ date }}.{% endblocktrans %}

{% endif %} {% if payment_enabled %}
{% trans "New payment" %}
{% endif %} {% endif %} {% endblock %}