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

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 %}