2017-06-27 19:09:15 +02:00
{% extends "zerver/emails/email_base_messages.html" %}
2013-10-21 23:35:36 +02:00
2017-06-27 19:09:15 +02:00
{% block content %}
2017-07-06 23:59:11 +02:00
Hello {{ name }},
< p > A lot has happened on Zulip while you've been away! < a href = "{{ realm_uri }}" > Visit Zulip< / a > to catch up.< / p >
{% if unread_pms %}
< h2 > Missed private messages< / h2 >
< p > You have some missed private messages. Here are some of them:< / p >
2016-09-14 06:54:48 +02:00
< div id = 'private-messages' >
2017-07-06 23:59:11 +02:00
{% for recipient_block in unread_pms %}
2016-09-14 06:54:48 +02:00
< div class = 'recipient_block' >
< div class = 'recipient_header' > {{ recipient_block.header.html|safe }}< / div >
< div class = 'message_content' >
2017-07-06 23:59:11 +02:00
{% for sender_block in recipient_block.senders %}
2016-09-14 06:54:48 +02:00
{% if sender_block.sender %} < div class = "message_sender" > {{ sender_block.sender }}< / div > {% endif %}
2017-07-06 23:59:11 +02:00
{% for message_block in sender_block.content %}
2016-09-14 06:54:48 +02:00
< div class = 'message_content_block' >
2017-07-06 23:59:11 +02:00
{{ message_block.html|safe }}
< / div >
{% endfor %}
2013-10-21 23:35:36 +02:00
{% endfor %}
2017-07-06 23:59:11 +02:00
< / div >
2013-10-21 23:35:36 +02:00
< / div >
2017-07-06 23:59:11 +02:00
{% endfor %}
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
{% if remaining_unread_pms_count > 0 %}< p > + {{ remaining_unread_pms_count }} more new private message{{ remaining_unread_pms_count|pluralize }}< / p > {% endif %}
< p > < a href = "{{ realm_uri }}/#narrow/is/private" > Catch up on the rest of your PMs.< / a > < / p >
< / div >
{% endif %}
{% if hot_conversations %}
< br / >
< h2 > Hot conversations< / h2 >
< p >
Here are some of the hot conversations that have happened while you've been gone:
< / p >
{% for convo in hot_conversations %}
2018-12-31 09:54:59 +01:00
< div class = 'messages' >
2017-07-06 23:59:11 +02:00
{% for recipient_block in convo.first_few_messages %}
2016-09-14 06:54:48 +02:00
< div class = 'hot_convo_recipient_block' >
< div class = 'hot_convo_recipient_header' > {{ recipient_block.header.html|safe }}< / div >
< div class = 'hot_convo_message_content' >
2017-07-06 23:59:11 +02:00
{% for sender_block in recipient_block.senders %}
2016-09-14 06:54:48 +02:00
{% if sender_block.sender %} < div class = "hot_convo_message_sender" > {{ sender_block.sender }}< / div > {% endif %}
2017-07-06 23:59:11 +02:00
{% for message_block in sender_block.content %}
2016-09-14 06:54:48 +02:00
< div class = 'hot_convo_message_content_block' >
2017-07-06 23:59:11 +02:00
{{ message_block.html|safe }}
< / div >
{% endfor %}
2017-06-14 00:12:30 +02:00
{% endfor %}
2017-07-06 23:59:11 +02:00
< / div >
2017-06-14 00:12:30 +02:00
< / div >
2017-07-06 23:59:11 +02:00
{% if convo.count > 0 %}< p > + {{ convo.count }} more message{{ convo.count|pluralize }} by {{ convo.participants|display_list(4) }}.< / p > {% endif %}
{% endfor %}
< / div >
2017-06-14 00:12:30 +02:00
{% endfor %}
2017-07-06 23:59:11 +02:00
< p > < a href = "{{ realm_uri }}" > Catch up on the rest of these conversations.< / a > < / p >
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
{% endif %}
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
{% if new_users and new_streams.html %}
< br / >
< h2 > Group updates< / h2 >
{% elif new_users %}
< br / >
< h2 > New users< / h2 >
{% elif new_streams.html %}
< br / >
< h2 > New streams< / h2 >
{% endif %}
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
{% if new_streams.html %}
< p > {% if new_stream_count and new_stream_count > 1 %}A new stream was{% else %}Some new streams were{% endif %} created:< / p >
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
< p > {{ new_streams.html|display_list(4)|safe }}.< / p >
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
< p > Click on {% if new_stream_count and new_stream_count > 1 %}a{% else %}the{% endif %} name to check out some of the traffic, or visit your < a href = "{{ realm_uri }}/#streams" > Streams page< / a > to subscribe.< / p >
{% endif %}
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
{% if new_users %}
< p > {% if new_streams.html or unread_pms or hot_conversations %}And finally, please{% else %}Please{% endif %} welcome {{ new_users|display_list(4) }} to Zulip!< / p >
{% endif %}
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
< br / >
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
< p > < a href = "{{ realm_uri }}" > Click here to log in to Zulip and catch up.< / a > < / p >
2013-10-21 23:35:36 +02:00
2017-07-06 23:59:11 +02:00
< p > Cheers,< br / >
The Zulip Team< / p >
2017-06-27 19:09:15 +02:00
{% endblock %}
2013-10-21 23:35:36 +02:00
2017-06-27 19:09:15 +02:00
{% block manage_preferences %}
2013-12-02 01:39:10 +01:00
< p >
2018-07-12 09:56:54 +02:00
< a href = "{{ realm_uri }}/#settings/notifications" > Manage email preferences< / a > |
2017-06-14 00:12:30 +02:00
< a href = "{{ unsubscribe_link }}" > Unsubscribe from digest emails< / a >
2013-12-02 01:39:10 +01:00
< / p >
2017-06-27 19:09:15 +02:00
{% endblock %}