{% extends 'layout.html' %} {% load fr_display %} {% block content %}

Users following {% if is_self %}you {% else %} {% include 'snippets/username.html' with user=user %} {% endif %}

{% include 'snippets/user_header.html' with user=user %}

Following

{% for follower in user.following.all %}
{% include 'snippets/avatar.html' with user=follower %}
{% include 'snippets/username.html' with user=follower show_full=True %}
{% include 'snippets/follow_button.html' with user=follower %}
{% endfor %} {% if not following.count %}
No one is following {{ user|username }}
{% endif %}
{% endblock %}