mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
Adds HTML title elements to templates that extend either `base.html`, `portico.html` or `portico_signup.html`, and that are not website portico landing pages that will use the `PAGE_TITLE` variable to set the HTML title element (see following commit in series). Also, updates some templates for missing translation tags. As a general rule, we want the title element (and page content) translated. Exceptions that are updated in this commit are templates used in the development environment, analytics templates that are used by staff and templates related to Zephyr.
44 lines
1.4 KiB
HTML
44 lines
1.4 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>
|
|
{% trans %}
|
|
The organization you are trying to join, {{ deactivated_domain_name }}, has been deactivated.
|
|
{% endtrans %}
|
|
{% if deactivated_redirect %}
|
|
{% trans %}
|
|
It has moved to <a href="{{ deactivated_redirect }}">{{ deactivated_redirect }}</a>.
|
|
{% endtrans %}
|
|
{% endif %}
|
|
{% trans %}
|
|
Please contact <a href="mailto:{{ support_email }}">{{ support_email }}</a> to reactivate
|
|
this group.
|
|
{% endtrans %}
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|