{% set current_page='following' %}
{% extends 'federation/master.html' %}
{% block page_content %}
{% if following|length == 0 %}
You are not following anyone.
Search an actor
{% endif %}
{% for object in following %}
{% if object['type'] == 'Person' %}
{% include 'federation/list/person.html' %}
{% elif object['type'] == 'Project' %}
{% include 'federation/list/project.html' %}
{% endif %}
{% endfor %}