123456789101112131415161718192021 |
- {% set current_page='following' %}
- {% extends 'federation/master.html' %}
- {% block page_content %}
-
- {% if following|length == 0 %}
- You are not following anyone.
- <a href="{{ url_for('forgefed_ns.federation_search') }}">
- Search an actor
- </a>
- {% endif %}
-
- <div>
- {% for actor in following %}
- <div>{% include 'federation/actor.html' %}</div>
- {% endfor %}
- </div>
-
- {% endblock %}
|