{% 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 }}'s tweets:{% endblocktrans %}
{% if follow_list %} {% for following_user in follow_list %} {# @@@ this is common code from all profiles list -- refactor #}{% 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 %}