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