mirror of https://github.com/zulip/zulip.git
21 lines
566 B
HTML
21 lines
566 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_url }}/email_logo.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% trans %}
|
|
Your Zulip account on <a href="{{ realm_url }}">{{ realm_url }}</a> has been deactivated, and you will no longer be able to log in.
|
|
{% endtrans %}
|
|
|
|
<br/><br/>
|
|
|
|
{% if deactivation_notification_comment %}
|
|
{{ _("The administrators provided the following comment:") }}
|
|
|
|
<pre class="deactivated-user-text">{{ deactivation_notification_comment }}</pre>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|