{% extends "microblogging/base.html" %} {% load i18n %} {% load avatar_tags %} {% load account_tags %} {% block head_title %} {% user_display other_user as other_user_display %} {% blocktrans %}{{ other_user_display }} is Following{% endblocktrans %} {% endblock %} {% block body %} {% user_display other_user as other_user_display %}
{% blocktrans %}Users whose tweets {{ other_user_display }} is following:{% endblocktrans %}
{% if follow_list %} {% for following_user in follow_list %} {# @@@ this is common code from all profiles list -- refactor #}{% trans 'Not following anyone.' %}
{% endif %} {% url tweet_followers other_user.username as tweet_followers_url %}{% blocktrans %}Also see who is following {{ other_user_display }}.{% endblocktrans %} {% endblock %}