{% extends "microblogging/base.html" %} {% load i18n %} {% load avatar_tags %} {% load account_tags %} {% user_display other_user as other_user_display %} {% block head_title %}{% blocktrans %}{{ other_user_display }} is Following{% endblocktrans %}{% endblock %} {% block body %}
{% 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 %}