{% extends "microblogging/base.html" %} {% load i18n %} {% load avatar_tags %} {% load account_tags %} {% block head_title %} {% user_display other_user as other_user_display %} {% blocktrans %}Followers of {{ other_user_display }}{% endblocktrans %} {% endblock %} {% block body %} {% user_display other_user as other_user_display %}

{% blocktrans %}Followers of {{ other_user_display }}{% endblocktrans %}

{% url profile_detail other_user.username as other_user_url %}

{% blocktrans %}Followers of {{ other_user_display }}'s tweets:{% endblocktrans %}

{% if follow_list %} {% for following_user in follow_list %} {# @@@ this is common code from all profiles list -- refactor #}
{# @@@ factor out style into css file #}
{% avatar following_user 40 %}
{% user_display following_user %}
{% endfor %} {% else %}

{% trans 'No followers.' %}

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

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