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

22 lines
662 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block body %}
<h1>{% if SUCCESSFUL %}{% trans "Activation successful" %}{% else %}{% trans "Activation failed" %}{% endif %}</h1>
{% 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 %}