{% extends "zerver/emails/email_base_messages.html" %} {% block content %} {% if hot_conversations %} {% for convo in hot_conversations %}
{% for recipient_block in convo.first_few_messages %}
{{ recipient_block.header.html|safe }}
{% for sender_block in recipient_block.senders %} {% if sender_block.sender %}
{{ sender_block.sender }}
{% endif %} {% for message_block in sender_block.content %}
{{ message_block.html|safe }}
{% endfor %} {% endfor %}
{% if convo.count > 0 %}

+ {{ convo.count }} more message{{ convo.count|pluralize }} by {{ convo.participants|display_list(4) }}.

{% endif %} {% endfor %}
{% endfor %} {% endif %} {% if new_streams.html %}

New streams

{{ new_streams.html|display_list(1000)|safe }}.

{% endif %}

Click here to log in to Zulip and catch up.

{% endblock %} {% block manage_preferences %}

Manage email preferences | Unsubscribe from digest emails

{% endblock %}