{% 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 %}{{ other_user_display }} is Following{% endblocktrans %}

{% url profile_detail other_user.username as other_user_url %}

{% 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 #}
{# @@@ factor out style into css file #}
{% avatar following_user 40 %}
{% user_display following_user %}
{% endfor %} {% else %}

{% 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 %}