mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00: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.
26 lines
885 B
HTML
26 lines
885 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 organization_name_with_link=macros.link_tag(realm.uri, realm.string_id) %}
|
|
Your organization, {{ organization_name_with_link }}, has been downgraded to the Zulip Cloud
|
|
Free plan because of unpaid invoices. The unpaid invoices have been voided.
|
|
{% endtrans %}
|
|
<br/>
|
|
<br/>
|
|
|
|
{% trans upgrade_url=macros.link_tag(upgrade_url) %}
|
|
To continue on the Zulip Cloud Standard plan, please upgrade again by going to {{ upgrade_url }}.
|
|
{% endtrans %}
|
|
|
|
<br/>
|
|
<br/>
|
|
|
|
{% trans support_email=macros.email_tag(support_email) %}
|
|
If you think this was a mistake or need more details, please reach out to us at {{ support_email }}.
|
|
{% endtrans %}
|
|
{% endblock %}
|