{% load i18n %} {% if ACCOUNT_EXPIRED %}
{% blocktrans with url=EXTEND_URL %}Your account has expired. Please extend your account.{% endblocktrans %}
{% else %} {% if ACCOUNT_NOT_ACTIVE %}
{% blocktrans with url=ACTIVATE_URL %} Your account is not active. Possibly you are over some limits. Try to activate your account. {% endblocktrans %}
{% endif %} {% if EXPIRE_IN_DAYS >= 0 and EXPIRE_IN_DAYS <= 14 %}
{% blocktrans with extend_url=EXTEND_URL days_to_expire=EXPIRE_IN_DAYS %} Your account will expire soon (in {{ days_to_expire }} days). We recommend to extend your account now. {% endblocktrans %}
{% endif %} {% endif %}