{% set current_page='followers' %} {% extends 'federation/master.html' %} {% block page_content %} {% if followers|length == 0 %} Nobody is following you. {% endif %}
{% for object in followers %} {% if object['type'] == 'Person' %} {% include 'federation/list/person.html' %} {% elif object['type'] == 'Project' %} {% include 'federation/list/project.html' %} {% endif %} {% endfor %}
{% endblock %}