{% extends "base.html" %} {% block subtitle %}Follows{% endblock %} {% block content %}
{% if inbound %} Your Follows Follows You {% else %} Your Follows Follows You {% endif %}
{% for identity in page_obj %} {{ identity.html_name_or_handle }} @{{ identity.handle }} {% if identity.id in outbound_ids %} Following {% endif %} {% if identity.id in inbound_ids %} Follows You {% endif %} {% empty %}

You have no follows.

{% endfor %}
{% endblock %}