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

{% trans "Hi,"%}

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

{{ billing_url }}

{% 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 removal=billing.removal|date:"SHORT_DATE_FORMAT" %}If you don't perform the payment, all projects within this billing plan will be removed on {{ removal }}.{% endblocktrans %}

{% endif %} {% endblock %}