haikal/templates/plans/account_activation.html
2025-07-15 17:27:03 +03:00

23 lines
731 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block body %}
<h3>
{% if SUCCESSFUL %}
{% trans "Activation successful" %}
{% else %}
{% trans "Activation failed" %}
{% endif %}
</h3>
{% if SUCCESSFUL %}
{# {% include "messages.html" %}#}
{% blocktrans %}
Your panels will be available again soon.
{% endblocktrans %}
{% else %}
{% blocktrans %}
Your account cannot by activated because your account exceeds plan limits. Please adjust usage of limits and then try to activate your account again.
{% endblocktrans %}
{# {% include "messages.html" %}#}
{% endif %}
{% endblock %}