zulip/templates/zerver/deactivated.html
Aman Agrawal 47414d1e4a zerver: Use correct flags to check if this is a self hosted server.
`is_self_hosting_management_page` is used to check if user is
on `selfhosting.ORG_URL` domain which is not what we want for
these pages.
2024-05-16 08:55:51 -07:00

54 lines
1.9 KiB
HTML

{% extends "zerver/portico_signup.html" %}
{% block title %}
<title>{{ _("Deactivated organization") }} | Zulip</title>
{% endblock %}
{% block customhead %}
{{ super() }}
<meta http-equiv="refresh" content="60;URL='/'" />
{% endblock %}
{% block portico_content %}
<div class="app portico-page">
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
<div class="inline-block">
<div class="get-started">
{% if deactivated_redirect %}
<h1>{{ _("Organization moved") }}</h1>
{% else %}
<h1>{{ _("Deactivated organization") }}</h1>
{% endif %}
</div>
<div class="white-box deactivated-realm-container">
<p>
{% if deactivated_redirect %}
{% trans %}
This organization has moved to <a href="{{ deactivated_redirect }}">{{ deactivated_redirect }}</a>.
{% endtrans %}
{% else %}
{% trans %}
This organization has been deactivated.
{% endtrans %}
{% if corporate_enabled %}
{% trans %}
If you are an owner of this organization, you can <a href="mailto:{{ support_email }}">contact Zulip support</a> to reactivate it.
{% endtrans %}
{% else %}
{% trans %}
If you are an owner of this organization, you can <a href="mailto:{{ support_email }}">contact this Zulip server's administrators</a> to reactivate it.
{% endtrans %}
{% endif %}
{% endif %}
</p>
</div>
</div>
</div>
</div>
{% endblock %}