2017-06-27 19:09:15 +02:00
|
|
|
{% extends "zerver/emails/email_base_messages.html" %}
|
2013-05-03 20:24:55 +02:00
|
|
|
|
2017-06-27 19:12:01 +02:00
|
|
|
{% block preheader %}
|
|
|
|
{% for recipient_block in messages %}
|
|
|
|
{% for sender_block in recipient_block.senders %}
|
|
|
|
{% for message_block in sender_block.content %}
|
|
|
|
{{ message_block.html|safe }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-06-27 19:09:15 +02:00
|
|
|
{% block content %}
|
2017-11-29 13:42:39 +01:00
|
|
|
{% if show_message_content %}
|
2017-07-06 23:59:11 +02:00
|
|
|
{% for recipient_block in messages %}
|
2019-06-11 12:39:42 +02:00
|
|
|
{% for sender_block in recipient_block.senders %}
|
|
|
|
<div class="missed_message">
|
2017-07-06 23:59:11 +02:00
|
|
|
{% for message_block in sender_block.content %}
|
|
|
|
{{ message_block.html|safe }}
|
|
|
|
{% endfor %}
|
2019-06-11 12:39:42 +02:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2017-07-06 23:59:11 +02:00
|
|
|
{% endfor %}
|
2017-11-29 13:42:39 +01:00
|
|
|
{% endif %}
|
2017-06-27 19:09:15 +02:00
|
|
|
{% endblock %}
|
2013-05-23 17:48:35 +02:00
|
|
|
|
2017-06-27 19:09:15 +02:00
|
|
|
{% block manage_preferences %}
|
2019-06-18 14:13:53 +02:00
|
|
|
<div class="email-preferences">
|
|
|
|
—<br>
|
2019-07-08 08:02:17 +02:00
|
|
|
{% if mention %}
|
2019-07-11 13:58:29 +02:00
|
|
|
You are receiving this because you were mentioned.<br>
|
2019-07-08 12:41:49 +02:00
|
|
|
{% elif stream_email_notify %}
|
2019-07-11 13:58:29 +02:00
|
|
|
You are receiving this because you have email notifications enabled for this stream.<br>
|
2019-07-08 08:02:17 +02:00
|
|
|
{% endif %}
|
2019-06-18 14:13:53 +02:00
|
|
|
<a href="{{ realm_uri }}/#settings/notifications">Manage email preferences</a> | <a href="{{ unsubscribe_link }}">Unsubscribe</a> from missed message emails.<br>
|
2019-06-18 14:15:23 +02:00
|
|
|
{% if reply_to_zulip %}
|
|
|
|
Reply to this email directly, or <a href="{{ narrow_url }}">view it in Zulip</a><br>
|
|
|
|
{% else %}
|
|
|
|
Do not reply to this message. This Zulip server is not
|
2019-07-10 00:02:05 +02:00
|
|
|
configured to accept incoming emails (<a href="https://zulip.readthedocs.io/en/latest/production/email-gateway.html">help</a>). <a href="{{ narrow_url }}">Reply in Zulip</a>.<br>
|
2019-06-18 14:15:23 +02:00
|
|
|
{% endif %}
|
2019-06-18 14:13:53 +02:00
|
|
|
</div>
|
2017-06-27 19:09:15 +02:00
|
|
|
{% endblock %}
|