{% 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 using the following link:" %}

{{ billing_url }}

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

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

{% if final_removal %}

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

{% elif 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 %} {% endif %} {% endwith %} {% endblock %}