{% extends "zwitschern/base.html" %} {% load i18n %} {% block head_title %}{% blocktrans %}{{ other_user }} is Following{% endblocktrans %}{% endblock %} {% block body %}
{% blocktrans with other_user.get_profile.get_absolute_url as other_user_url %}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 #} {% 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 }}.{% endblocktrans %} {% endblock %}