{% extends "base.html" %} {% load activity_tags %} {% block subtitle %}Follows{% endblock %} {% block content %}
{% if inbound %} Your Follows ({{ num_outbound }}) Follows You ({{ num_inbound }}) {% else %} Your Follows ({{ num_outbound }}) Follows You ({{ num_inbound }}) {% endif %}
{% for identity in page_obj %}
{% include "identity/_identity_banner.html" with identity=identity link_avatar=False link_handle=False %}
{% if identity.id in outbound_ids %} Following {% endif %} {% if identity.id in inbound_ids %} Follows You {% endif %} {% if inbound %} {% endif %}
{% empty %}

You have no follows.

{% endfor %}
{% endblock %}