23 lines
731 B
HTML
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 %}
|