2013-11-25 16:47:19 +01:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Email settings updated") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2013-11-25 16:47:19 +01:00
|
|
|
{% block portico_content %}
|
|
|
|
|
2021-04-28 00:35:00 +02:00
|
|
|
<div class="app portico-page">
|
2023-04-25 16:19:53 +02:00
|
|
|
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
|
2021-04-28 00:35:00 +02:00
|
|
|
<div class="inline-block">
|
2013-11-25 16:47:19 +01:00
|
|
|
|
2021-04-28 00:35:00 +02:00
|
|
|
<div class="get-started">
|
|
|
|
<h1>{{ _("Email settings updated") }}</h1>
|
|
|
|
</div>
|
2013-11-25 16:47:19 +01:00
|
|
|
|
2021-04-28 00:35:00 +02:00
|
|
|
<div class="white-box">
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
2023-04-11 14:27:07 +02:00
|
|
|
You've successfully unsubscribed from Zulip {{ subscription_type }} emails for
|
|
|
|
<a href="{{ realm_uri }}">{{ realm_name }}</a>.
|
2021-04-28 00:35:00 +02:00
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
|
2023-04-11 14:27:07 +02:00
|
|
|
{% if subscription_type != "welcome" %}
|
2021-04-28 00:35:00 +02:00
|
|
|
<p>
|
|
|
|
{% trans %}
|
2023-04-11 14:27:07 +02:00
|
|
|
You can undo this change or review your preferences in your
|
|
|
|
<a href="{{ realm_uri }}/#settings/notifications">notification settings</a>.
|
2021-04-28 00:35:00 +02:00
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
2023-04-11 14:27:07 +02:00
|
|
|
{% endif %}
|
2021-04-28 00:35:00 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-11-25 16:47:19 +01:00
|
|
|
|
|
|
|
{% endblock %}
|