{% extends "notifications/_base.html" %} {% block title %} Daily summary of activities in your communities {% endblock %} {% block body %} {% for digest in digests %}

In the {{ digest.community.name }} community

{% if digest.new_members %}

New members

{% for user in digest.new_members %}

{{ user }}

{% endfor %} {% endif %} {% if digest.new_documents %}

New documents

{% for doc in digest.new_documents %}

{{ doc }}
Posted by {{ doc.creator }}.

{% endfor %} {% endif %} {% if digest.updated_documents %}

Updated documents

{% for doc in digest.updated_documents %}

{{ doc }}.

{% endfor %} {% endif %} {% if digest.new_conversations %}

New conversations

{% for thread in digest.new_conversations %}

{{ thread }}
Posted by {{ thread.creator }}.

{% endfor %} {% endif %} {% if digest.updated_conversations %}

Updated conversations

{% for thread in digest.updated_conversations %}

{{ thread }}

{% endfor %} {% endif %} {% endfor %} {% endblock %} {% block footer %} You receive this email because you subscribe to communities notifications.
You can modify your notifications by going to the application's Preferences page.
You can unsubscribe by following this link. {% endblock %}