microblog.pub/templates/following.html

35 lines
1.1 KiB
HTML
Raw Normal View History

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">
2018-07-26 20:44:31 +00:00
{% for (follow_id, follow) in following_data %}
2018-07-14 10:14:08 +00:00
{% if session.logged_in %}
2019-07-05 20:05:28 +00:00
<div style="margin-left:90px;padding-bottom:5px;margin-bottom:15px;display:inline-block;">
2018-07-14 10:14:08 +00:00
<form action="/api/undo" class="action-form" method="POST">
<input type="hidden" name="redirect" value="{{ request.path }}"/>
2018-07-26 20:44:31 +00:00
<input type="hidden" name="id" value="{{ follow_id }}"/>
2018-07-14 10:14:08 +00:00
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<button type="submit" class="bar-item">unfollow</button>
</form>
</div>
{% endif %}
2018-06-27 21:27:48 +00:00
<div style="height: 100px;">
2018-07-21 21:24:12 +00:00
{{ utils.display_actor_inline(follow, size=80) }}
2018-06-27 21:27:48 +00:00
</div>
2018-05-18 18:41:41 +00:00
{% endfor %}
{{ utils.display_pagination(older_than, newer_than) }}
2018-05-18 18:41:41 +00:00
</div>
</div>
{% endblock %}
{% block links %}
<link rel="alternate" href="{{ config.BASE_URL }}/following" type="application/activity+json">
{{ utils.display_pagination_links(older_than, newer_than) }}{% endblock %}