2018-05-18 18:41:41 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% import 'utils.html' as utils %}
|
2018-05-21 19:03:21 +00:00
|
|
|
{% block title %}Following - {{ config.NAME }}{% endblock %}
|
2018-05-18 18:41:41 +00:00
|
|
|
{% block header %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="container">
|
|
|
|
{% include "header.html" %}
|
|
|
|
|
|
|
|
<div id="following">
|
|
|
|
{% for followed in following_data %}
|
2018-06-27 21:27:48 +00:00
|
|
|
<div style="height: 100px;">
|
|
|
|
{{ utils.display_actor_inline(followed, size=80) }}
|
|
|
|
</div>
|
2018-05-18 18:41:41 +00:00
|
|
|
{% endfor %}
|
2018-07-07 11:56:00 +00:00
|
|
|
{{ utils.display_pagination(older_than, newer_than) }}
|
2018-05-18 18:41:41 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2018-07-07 11:56:00 +00:00
|
|
|
{% block links %}{{ utils.display_pagination_links(older_than, newer_than) }}{% endblock %}
|