{% extends "zwitschern/base.html" %} {% load i18n %} {% load gravatar_tags %} {% block head_title %}{% blocktrans %}{{ other_user }} is Following{% endblocktrans %}{% endblock %} {% block body %}
{% blocktrans %}Users whose tweets {{ other_user }} is following:{% endblocktrans %}
{% if other_user.followed.all %} {% for following in other_user.followed.all %} {# @@@ 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 }}.{% endblocktrans %} {% endblock %}