2022-12-04 16:41:41 +00:00
|
|
|
{% extends "base.html" %}
|
2022-12-17 00:39:10 +00:00
|
|
|
{% load activity_tags %}
|
2022-11-18 03:04:01 +00:00
|
|
|
|
|
|
|
{% block subtitle %}Follows{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-12-17 00:24:56 +00:00
|
|
|
<div class="view-options">
|
|
|
|
{% if inbound %}
|
2022-12-17 00:32:04 +00:00
|
|
|
<a href=".">Your Follows ({{ num_outbound }})</a>
|
|
|
|
<a href="." class="selected">Follows You ({{ num_inbound }})</a>
|
2022-12-17 00:24:56 +00:00
|
|
|
{% else %}
|
2022-12-17 00:32:04 +00:00
|
|
|
<a href=".?inbound=true" class="selected">Your Follows ({{ num_outbound }})</a>
|
|
|
|
<a href=".?inbound=true">Follows You ({{ num_inbound }})</a>
|
2022-12-17 00:24:56 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2022-11-18 03:04:01 +00:00
|
|
|
<section class="icon-menu">
|
2022-12-17 00:24:56 +00:00
|
|
|
{% for identity in page_obj %}
|
2022-11-18 03:04:01 +00:00
|
|
|
<a class="option" href="{{ identity.urls.view }}">
|
2022-12-18 00:01:07 +00:00
|
|
|
<img src="{{ identity.local_icon_url.relative }}" loading="lazy">
|
2022-11-18 03:04:01 +00:00
|
|
|
<span class="handle">
|
2022-12-15 07:50:54 +00:00
|
|
|
{{ identity.html_name_or_handle }}
|
2022-11-18 03:04:01 +00:00
|
|
|
<small>@{{ identity.handle }}</small>
|
|
|
|
</span>
|
2022-12-21 19:57:14 +00:00
|
|
|
|
2022-12-17 00:24:56 +00:00
|
|
|
{% if identity.id in outbound_ids %}
|
2022-11-18 03:04:01 +00:00
|
|
|
<span class="pill">Following</span>
|
|
|
|
{% endif %}
|
2022-12-17 00:24:56 +00:00
|
|
|
{% if identity.id in inbound_ids %}
|
2022-11-18 03:04:01 +00:00
|
|
|
<span class="pill">Follows You</span>
|
|
|
|
{% endif %}
|
2022-12-21 19:57:14 +00:00
|
|
|
|
|
|
|
<div class="right">
|
|
|
|
{% if inbound %}
|
|
|
|
<form action="{{ identity.urls.action }}" method="POST" class="follow">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% if identity.id in outbound_ids %}
|
|
|
|
<input type="hidden" name="action" value="unfollow">
|
|
|
|
<button class="destructive">Unfollow</button>
|
|
|
|
{% else %}
|
|
|
|
<input type="hidden" name="action" value="follow">
|
|
|
|
<button>Follow</button>
|
|
|
|
{% endif %}
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<time>{{ identity.follow_date | timedeltashort }} ago</time>
|
|
|
|
</div>
|
2022-11-18 03:04:01 +00:00
|
|
|
</a>
|
|
|
|
{% empty %}
|
|
|
|
<p class="option empty">You have no follows.</p>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
2022-12-17 00:06:29 +00:00
|
|
|
|
|
|
|
<div class="pagination">
|
|
|
|
{% if page_obj.has_previous %}
|
2022-12-17 00:32:04 +00:00
|
|
|
<a class="button" href=".?page={{ page_obj.previous_page_number }}{% if inbound %}&inbound=true{% endif %}">Previous Page</a>
|
2022-12-17 00:06:29 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page_obj.has_next %}
|
2022-12-17 00:32:04 +00:00
|
|
|
<a class="button" href=".?page={{ page_obj.next_page_number }}{% if inbound %}&inbound=true{% endif %}">Next Page</a>
|
2022-12-17 00:06:29 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2022-11-18 03:04:01 +00:00
|
|
|
{% endblock %}
|