{% extends 'layout.html' %} {% load fr_display %} {% block content %} {% include 'snippets/user_header.html' with user=user %}

Followers

{% for followers in followers %}
{% include 'snippets/avatar.html' with user=followers %}
{% include 'snippets/username.html' with user=followers show_full=True %}
{% include 'snippets/follow_button.html' with user=followers %}
{% endfor %} {% if not followers.count %}
{{ user|username }} has no followers
{% endif %}
{% endblock %}