{% extends "mail/email_base.xhtml" %} {% load utils_tags %} {% block body %}

You have a follow request:

{{ follower_profile.username }}
{{ follower_profile.shared_stories_count }} shared {{ follower_profile.shared_stories_count|pluralize:"story,stories" }} · {{ follower_profile.follower_count }} follower{{ follower_profile.follower_count|pluralize }}

Approve or ignore this follow request on NewsBlur.

{% 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 }}
{% endfor %}
{% endif %} {% if common_followings %}

You and {{ follower_profile.username }} both follow {{ common_followings|length }} {{ common_followings|pluralize:"person,people" }}:

{% for following in common_followings %}
{{ following.username }}
{% endfor %}
{% endif %} {% endblock %}