mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
This commit replaces occurrences of realm_uri with realm_url in email templates and other related backend files. Co-authored-by: Junyao Chen <junyao.chen@socitydao.org>
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 %}
|