{% extends "accounts/_notab.html" %} {% load util %} {% block title %}{% if is_owner %}Users you are following{% else %}Users followed by {{ user.username }}{% endif %}{% endblock %} {% block tab_home_active %}{% if is_owner %}active_tab{% endif %}{% endblock %} {% block tab_people_active %}{% if not is_owner %}active_tab{% endif %}{% endblock %} {% block section_content %}

{% if is_owner %}Users that you are following{% else %}Users followed by {{ user.username }}{% endif %}

{% if following %}

{% if is_owner %}You are{% else %}{{ user.username }} is {% endif %} following {{ following|length }} user{{ following|pluralize }}

{% else %}

 

{% if is_owner %}You are{% else %}{{ user.username }} is {% endif %} not following any users yet.

{% endif %}

{% endblock %}