{% set current_page='followers' %} {% extends 'federation/master.html' %} {# SPDX-FileCopyrightText: 2020-2021 zPlus SPDX-License-Identifier: GPL-2.0-only #} {% block page_content %} {% if followers|length == 0 %} Nobody is following you. {% endif %}
{% for actor in followers %}
{% include 'federation/actor.html' %}
{% endfor %}
{% endblock %}