mirror of https://github.com/zulip/zulip.git
21 lines
978 B
HTML
21 lines
978 B
HTML
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_uri }}/registration_confirmation.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{% trans %}Dear former administrators of {{ realm_name }},{% endtrans %}</p>
|
|
|
|
<p>{% trans realm_uri=macros.link_tag(realm_uri) %}One of your administrators requested reactivation of the previously deactivated Zulip organization hosted at {{ realm_uri }}.{% 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>{% trans support_email=macros.email_tag(support_email) %}Contact us any time at {{ support_email }} if you run into trouble, have any feedback, or just want to chat!{% endtrans %}</p>
|
|
{% endblock %}
|