microblog.pub/templates/following.html

72 lines
2.3 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">
2019-09-01 09:32:12 +00:00
{% for (follow_id, meta) in following_data %}
{% set follow = meta.object %}
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;">
2019-08-27 21:02:19 +00:00
<a class="bar-item" href="/admin/profile?actor_id={{follow.id}}">profile</a>
2019-07-22 18:32:35 +00:00
<form action="/api/undo" class="action-form" method="post">
2018-07-14 10:14:08 +00:00
<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>
2019-09-01 09:32:12 +00:00
{% if meta.notification_follows_back %}
<span class="bar-item-no-hover">follows you back</span>
{% endif %}
{% if lists %}
2019-07-22 18:32:35 +00:00
<form action="/api/add_to_list" class="action-form" method="post">
<input type="hidden" name="redirect" value="{{ request.path }}"/>
<input type="hidden" name="actor_id" value="{{ follow.id }}"/>
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<select name="list_name" style="float:left;">
<option></option>
{% for l in lists %}
{% if follow.id not in l.members %}
<option value="{{l.name}}">{{l.name}}</option>
{% endif %}
{% endfor %}
</select>
<button type="submit" class="bar-item">add to list</button>
</form>
{% endif %}
2019-07-22 18:32:35 +00:00
{% for l in lists %}
{% if follow.id in l.members %}
<form action="/api/remove_from_list" class="action-form" method="post">
<input type="hidden" name="redirect" value="{{ request.path }}"/>
<input type="hidden" name="actor_id" value="{{ follow.id }}"/>
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<button type="submit" class="bar-item">remove from {{ l.name }}</button>
</form>
{% endif %}
{% endfor %}
2019-09-01 09:32:12 +00:00
2019-07-22 18:32:35 +00:00
2018-07-14 10:14:08 +00:00
</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 %}