{% set current_page='followers' %} {% extends 'federation/master.html' %} {% block page_content %} {% if followers|length == 0 %} Nobody is following you. {% endif %}
{% for actor in followers %}
{% include 'federation/actor.html' %}
{% endfor %}
{% endblock %}