{% extends "accounts/_notab.html" %} {% load util %} {% block title %}{% if is_owner %}Users following you{% else %}Users following {{ 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 following you{% else %}Users following {{ user.username }}{% endif %}

{% if followers %}

{% if is_owner %}You have{% else %}{{ user.username }} has {% endif %} {{ followers|length }} follower{{ followers|pluralize }}

{% else %}

 

{% if is_owner %}You have{% else %}{{ user.username }} has {% endif %} no followers yet.

{% endif %}

{% endblock %}