{% extends 'user/user_layout.html' %} {% load bookwyrm_tags %} {% block header %}

{% if is_self %}Your {% else %} {% include 'snippets/username.html' with user=user possessive=True %} {% endif %} followers

{% endblock %} {% block panel %}

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