mirror of https://github.com/zulip/zulip.git
27 lines
967 B
HTML
27 lines
967 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_url }}/registration_confirmation.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{% trans %}Dear former administrators of {{ realm_name }},{% endtrans %}</p>
|
|
|
|
<p>{% trans realm_url=macros.link_tag(realm_url) %}One of your administrators requested reactivation of the previously deactivated Zulip organization hosted at {{ realm_url }}.{% endtrans %}</p>
|
|
|
|
<p>
|
|
{{ _('Click the button below to reactivate your organization.') }}
|
|
<a class="button" href="{{ confirmation_url }}">{{ _('Reactivate organization') }}</a>
|
|
</p>
|
|
|
|
<p>{% trans %}If the request was in error, you can take no action and this link will expire in 24 hours.{% endtrans %}</p>
|
|
|
|
<p>
|
|
{% if corporate_enabled %}
|
|
{{macros.contact_us_zulip_cloud(support_email)}}
|
|
{% else %}
|
|
{{macros.contact_us_self_hosted(support_email)}}
|
|
{% endif %}
|
|
</p>
|
|
{% endblock %}
|