mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
If a realm's data has been scrubbed, update the deactivated realm to note the URL can be reused, but not that the realm can be reactivated. Updates the template for context variables that are no longer used.
55 lines
2.2 KiB
HTML
55 lines
2.2 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">
|
|
<h1>{{ _("Deactivated organization") }}</h1>
|
|
</div>
|
|
|
|
<div class="white-box deactivated-realm-container">
|
|
<p>
|
|
{% if realm_data_deleted %}
|
|
{{ _("This organization has been deactivated, and all organization data has been deleted.") }}
|
|
{% if corporate_enabled %}
|
|
{% trans %}
|
|
You can <a href="mailto:{{ support_email }}">contact Zulip support</a> to inquire about reusing this URL for a new organization.
|
|
{% endtrans %}
|
|
{% else %}
|
|
{% trans %}
|
|
You can <a href="mailto:{{ support_email }}">contact this Zulip server's administrators</a> to inquire about reusing this URL for a new organization.
|
|
{% endtrans %}
|
|
{% endif %}
|
|
{% else %}
|
|
{{ _("This organization has been deactivated.") }}
|
|
{% 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 %}
|