{% 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 %}

New comments in conversations

{%- for thread, info in digest.updated_conversations.items() %}

{{ thread }}
by {{ info['actors']|join(', ') }}

{%- endfor %} {%- endif %} {%- if digest.new_wiki_pages %}

New wiki pages

{%- for page in digest.new_wiki_pages %}

{{ page }}
Posted by {{ page.creator }}.

{%- endfor %} {%- endif %} {%- if digest.updated_wiki_pages %}

Updated wiki pages

{%- for page, actors in digest.updated_wiki_pages.items() %}

{{ page }}
by {% for actor, changes in actors.items() %}{{ actor }} {% if changes > 1 %}(x{{ changes }}){% endif %} {%- if not loop.last %}, {% endif %} {%- endfor %}. {{ actors }}

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