mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
In #23380 we want to change all ocurrences of `uri` to `url`. This commit changes the ocurrences of `uri` appeared in files related to email, including templates (`.html`, `.txt`) and backend (`.py`) codes. In `email.md`, `base_images_uri` is changed to `images_base_url` - the words `base` and `images` are swapped and plural form is added for `image`. This is becasue the former is not found anywhere in the codebase while the later appears a lot. To reduce confusion, this doccumentation changed accordingly.
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_uri }}">{{ realm_uri }}</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 %}
|