haikal/templates/plans/expiration_messages.html
Marwan Alwali aaf12c950b update
2025-01-26 13:33:57 +03:00

32 lines
1.1 KiB
HTML

{% load i18n %}
{% block expiration_messages %}
{% if ACCOUNT_EXPIRED %}
<div class="alert alert-phoenix-danger">
{% blocktrans with url=EXTEND_URL %}Your account has expired.
Please <a href="{{ url }}">extend your account</a>.{% endblocktrans %}
</div>
{% else %}
{% if ACCOUNT_NOT_ACTIVE %}
<div class="alert alert-phoenix-danger">
{% blocktrans with url=ACTIVATE_URL %}
Your account is not active. Possibly you are over some limits.
Try to <a href="{{ url }}">activate your account</a>.
{% endblocktrans %}
</div>
{% endif %}
{% if EXPIRE_IN_DAYS >= 0 and EXPIRE_IN_DAYS <= 14 %}
<div class="alert alert-phoenix-warning">
{% 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 <a href="{{ extend_url }}">extend your account now.</a>
{% endblocktrans %}
</div>
{% endif %}
{% endif %}
{% endblock %}