2017-08-25 07:52:21 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
2019-03-04 18:43:22 +01:00
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Deactivated organization") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2019-03-04 18:43:22 +01:00
|
|
|
{% block customhead %}
|
|
|
|
{{ super() }}
|
2021-04-21 00:46:14 +02:00
|
|
|
<meta http-equiv="refresh" content="60;URL='/'" />
|
2019-03-04 18:43:22 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2014-01-07 19:04:26 +01:00
|
|
|
{% block portico_content %}
|
|
|
|
|
2017-08-25 07:52:21 +02:00
|
|
|
<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">
|
2014-01-07 19:04:26 +01:00
|
|
|
|
2017-08-25 07:52:21 +02:00
|
|
|
<div class="get-started">
|
2024-05-11 01:21:38 +02:00
|
|
|
{% if deactivated_redirect %}
|
|
|
|
<h1>{{ _("Organization moved") }}</h1>
|
|
|
|
{% else %}
|
|
|
|
<h1>{{ _("Deactivated organization") }}</h1>
|
|
|
|
{% endif %}
|
2017-08-25 07:52:21 +02:00
|
|
|
</div>
|
2014-01-07 19:04:26 +01:00
|
|
|
|
2017-08-25 09:16:35 +02:00
|
|
|
<div class="white-box deactivated-realm-container">
|
2017-08-25 07:52:21 +02:00
|
|
|
<p>
|
2020-12-12 12:23:48 +01:00
|
|
|
{% if deactivated_redirect %}
|
|
|
|
{% trans %}
|
2024-05-11 01:21:38 +02:00
|
|
|
This organization has moved to <a href="{{ deactivated_redirect }}">{{ deactivated_redirect }}</a>.
|
2020-12-12 12:23:48 +01:00
|
|
|
{% endtrans %}
|
2024-05-11 01:21:38 +02:00
|
|
|
{% else %}
|
|
|
|
{% trans %}
|
|
|
|
This organization has been deactivated.
|
|
|
|
{% endtrans %}
|
2024-05-16 05:30:24 +02:00
|
|
|
{% if corporate_enabled %}
|
2024-05-11 01:21:38 +02:00
|
|
|
{% trans %}
|
2024-05-16 05:30:24 +02:00
|
|
|
If you are an owner of this organization, you can <a href="mailto:{{ support_email }}">contact Zulip support</a> to reactivate it.
|
2024-05-11 01:21:38 +02:00
|
|
|
{% endtrans %}
|
|
|
|
{% else %}
|
|
|
|
{% trans %}
|
2024-05-16 05:30:24 +02:00
|
|
|
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.
|
2024-05-11 01:21:38 +02:00
|
|
|
{% endtrans %}
|
|
|
|
{% endif %}
|
2020-12-12 12:23:48 +01:00
|
|
|
{% endif %}
|
2017-08-25 07:52:21 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-01-07 19:04:26 +01:00
|
|
|
|
|
|
|
{% endblock %}
|