2012-06-27 23:58:10 -07:00
|
|
|
{% extends "mail/email_base.txt" %}
|
|
|
|
|
|
|
|
{% block body %}Say hello to your newest follower: {{ follower_profile.username }}.
|
|
|
|
|
2012-08-14 00:26:42 -07:00
|
|
|
{{ follower_profile.blurblog_url }} - {{ follower_profile.shared_stories_count }} shared {{ follower_profile.shared_stories_count|pluralize:"story,stories" }} - {{ follower_profile.follower_count }} follower{{ follower_profile.follower_count|pluralize }}
|
|
|
|
|
2012-06-28 10:14:42 -07:00
|
|
|
{% if common_followers %}
|
|
|
|
You follow {{ common_followers|length }} {{ common_followers|pluralize:"person,people" }} who follow{{ common_followers|pluralize:"s," }} {{ follower_profile.username }}:
|
2012-06-27 23:58:10 -07:00
|
|
|
|
2012-06-28 10:14:42 -07:00
|
|
|
{% for follower in common_followers %} * {{ follower.username }}: {{ follower.blurblog_url }}
|
2012-06-27 23:58:10 -07:00
|
|
|
{% endfor %}{% endif %}
|
|
|
|
|
2012-06-28 10:14:42 -07:00
|
|
|
{% if common_followings %}You follow {{ common_followings|length }} {{ common_followings|pluralize:"person,people" }} that {{ follower_profile.username }} also follows:
|
2012-06-27 23:58:10 -07:00
|
|
|
|
2012-06-28 10:14:42 -07:00
|
|
|
{% for following in common_followings %} * {{ following.username }}: {{ following.blurblog_url }}
|
2012-06-27 23:58:10 -07:00
|
|
|
{% endfor %}{% endif %}{% endblock %}
|