2018-05-18 13:41:41 -05:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% import 'utils.html' as utils %}
|
2018-05-21 14:03:21 -05:00
|
|
|
{% block title %}Following - {{ config.NAME }}{% endblock %}
|
2018-05-18 13:41:41 -05:00
|
|
|
{% block header %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="container">
|
|
|
|
{% include "header.html" %}
|
|
|
|
|
|
|
|
<div id="following">
|
2018-07-21 16:24:12 -05:00
|
|
|
{% for follow in following_data %}
|
2018-07-14 05:14:08 -05:00
|
|
|
{% if session.logged_in %}
|
|
|
|
<div style="margin-left:90px;padding-bottom:5px;margin-bottom:15px;">
|
|
|
|
<form action="/api/undo" class="action-form" method="POST">
|
|
|
|
<input type="hidden" name="redirect" value="{{ request.path }}"/>
|
2018-07-21 16:24:12 -05:00
|
|
|
<input type="hidden" name="id" value="{{ follow.id }}"/>
|
2018-07-14 05:14:08 -05:00
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
|
|
|
<button type="submit" class="bar-item">unfollow</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endif %}
|
2018-06-27 16:27:48 -05:00
|
|
|
<div style="height: 100px;">
|
2018-07-21 16:24:12 -05:00
|
|
|
{{ utils.display_actor_inline(follow, size=80) }}
|
2018-06-27 16:27:48 -05:00
|
|
|
</div>
|
2018-05-18 13:41:41 -05:00
|
|
|
{% endfor %}
|
2018-07-07 06:56:00 -05:00
|
|
|
{{ utils.display_pagination(older_than, newer_than) }}
|
2018-05-18 13:41:41 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2018-07-10 16:19:00 -05:00
|
|
|
{% block links %}
|
|
|
|
<link rel="alternate" href="{{ config.BASE_URL }}/following" type="application/activity+json">
|
|
|
|
{{ utils.display_pagination_links(older_than, newer_than) }}{% endblock %}
|