{% extends "zwitschern/base.html" %} {% load i18n %} {% block head_title %}{% blocktrans %}Followers of {{ other_user }}{% endblocktrans %}{% endblock %} {% block body %}

{% blocktrans %}Followers of {{ other_user }}{% endblocktrans %}

{% blocktrans with other_user.get_profile.get_absolute_url as other_user_url %}Followers of {{ other_user }}'s tweets:{% endblocktrans %}

{% if other_user.followers.all %} {% for following in other_user.followers.all %} {# @@@ this is common code from all profiles list -- refactor #}
{{ following.follower }}
{% endfor %} {% else %}

{% trans 'No followers.' %}

{% endif %} {% url tweet_following other_user.username as tweet_following_url %}

{% blocktrans %}Also see who {{ other_user }} is following.{% endblocktrans %} {% endblock %}