{% extends "base.html" %} {% block title %}{{this_user.display_name}}'s following{% endblock %} {% block heading %}
{{this_user.display_name}}
@{{this_user.username}}
{% endblock %} {% block body %}
Followers you know
Followers
Following
{% if tab == "followers_you_know" %}
{% for crab in followx %} {% if current_user not in crab.blocked %} {% include "mini_bio.html" %} {% endif %} {% else %}
You don't follow any of this user's followers.
{% endfor %}
{% elif tab == "followers" %}
{% for crab in followx %} {% if current_user not in crab.blocked %} {% include "mini_bio.html" %} {% endif %} {% else %}
This user doesn't have any followers 😢
{% endfor %}
{% elif tab == "following" %}
{% for crab in followx %} {% if current_user not in crab.blocked %} {% include "mini_bio.html" %} {% endif %} {% else %}
This user doesn't follow anyone
{% endfor %}
{% endif %} {% endblock %}