mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
14 lines
No EOL
744 B
Text
14 lines
No EOL
744 B
Text
{% extends "mail/email_base.txt" %}
|
|
|
|
{% block body %}Say hello to your newest follower: {{ follower_profile.username }}.
|
|
|
|
{% if common_followers %}
|
|
You follow {{ common_followers|length }} {{ common_followers|pluralize:"person,people" }} who follow{{ common_followers|pluralize:"s," }} {{ follower_profile.username }}:
|
|
|
|
{% for follower in common_followers %} * {{ follower.username }}: {{ follower.blurblog_url }}
|
|
{% endfor %}{% endif %}
|
|
|
|
{% if common_followings %}You follow {{ common_followings|length }} {{ common_followings|pluralize:"person,people" }} that {{ follower_profile.username }} also follows:
|
|
|
|
{% for following in common_followings %} * {{ following.username }}: {{ following.blurblog_url }}
|
|
{% endfor %}{% endif %}{% endblock %} |