mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +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.
43 lines
1.7 KiB
HTML
43 lines
1.7 KiB
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_url }}/email_logo.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>{{ _("As you are getting started with Zulip, we'd love to help you discover how it can work best for your needs. Check out this guide to key Zulip features for organizations like yours!") }}</p>
|
|
|
|
|
|
{% if organization_type == "business" %}
|
|
<a class="button" href="{{ zulip_guide_link }}">{{ _("View Zulip guide for businesses") }}</a>
|
|
{% elif organization_type == "opensource" %}
|
|
<a class="button" href="{{ zulip_guide_link }}">{{ _("View Zulip guide for open-source projects") }}</a>
|
|
{% elif organization_type == "education" %}
|
|
<a class="button" href="{{ zulip_guide_link }}">{{ _("View Zulip guide for education") }}</a>
|
|
{% elif organization_type == "research" %}
|
|
<a class="button" href="{{ zulip_guide_link }}">{{ _("View Zulip guide for research") }}</a>
|
|
{% elif organization_type == "event" %}
|
|
<a class="button" href="{{ zulip_guide_link }}">{{ _("View Zulip guide for events and conferences") }}</a>
|
|
{% elif organization_type == "nonprofit" %}
|
|
<a class="button" href="{{ zulip_guide_link }}">{{ _("View Zulip guide for non-profits") }}</a>
|
|
{% elif organization_type == "community" %}
|
|
<a class="button" href="{{ zulip_guide_link }}">{{ _("View Zulip guide for communities") }}</a>
|
|
{% endif %}
|
|
|
|
<p>
|
|
{% if corporate_enabled %}
|
|
{{macros.contact_us_zulip_cloud(support_email)}}
|
|
{% else %}
|
|
{{macros.contact_us_self_hosted(support_email)}}
|
|
{% endif %}
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
{% block manage_preferences %}
|
|
|
|
<p><a href="{{ unsubscribe_link }}">{% trans %}Unsubscribe from welcome emails for {{ realm_name }}{% endtrans %}</a></p>
|
|
|
|
{% endblock %}
|