zulip/templates/zerver/emails/onboarding_zulip_guide.html

40 lines
1.7 KiB
HTML
Raw Normal View History

{% extends "zerver/emails/email_base_default.html" %}
{% block illustration %}
<img src="{{ email_images_base_uri }}/email_logo.png" alt=""/>
{% endblock %}
{% block content %}
<p>{{ _("We hope you have been enjoying Zulip so far!") }}</p>
<p>{{ _("As you are getting started, 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>
{% trans support_email=macros.email_tag(support_email) %}Questions? Contact us any time at {{ support_email }}.{% endtrans %}
</p>
{% endblock %}
{% block manage_preferences %}
<p><a href="{{ unsubscribe_link }}">{% trans %}Unsubscribe from welcome emails for {{ realm_name }}{% endtrans %}</a></p>
{% endblock %}