61 lines
2.6 KiB
HTML
61 lines
2.6 KiB
HTML
{% extends "base.html" %}
|
|
{% load activity_tags %}
|
|
|
|
{% block subtitle %}Follows{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="view-options">
|
|
{% if inbound %}
|
|
<a href=".">Following ({{ num_outbound }})</a>
|
|
<a href="." class="selected">Followers ({{ num_inbound }})</a>
|
|
{% else %}
|
|
<a href=".?inbound=true" class="selected">Following ({{ num_outbound }})</a>
|
|
<a href=".?inbound=true">Followers ({{ num_inbound }})</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<section class="icon-menu">
|
|
{% for identity in page_obj %}
|
|
<a class="option " href="{{ identity.urls.view }}">
|
|
<div class="option-content">
|
|
{% include "identity/_identity_banner.html" with identity=identity link_avatar=False link_handle=False %}
|
|
</div>
|
|
<div class="option-actions">
|
|
{% if identity.id in outbound_ids %}
|
|
<span class="pill">Following</span>
|
|
{% endif %}
|
|
{% if identity.id in inbound_ids %}
|
|
<span class="pill">Follows You</span>
|
|
{% endif %}
|
|
|
|
{% 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>
|
|
</a>
|
|
{% empty %}
|
|
<p class="option empty">You {% if inbound %}have no followers{% else %}are not following anyone{% endif %}.</p>
|
|
{% endfor %}
|
|
</section>
|
|
|
|
<div class="pagination">
|
|
{% if page_obj.has_previous %}
|
|
<a class="button" href=".?page={{ page_obj.previous_page_number }}{% if inbound %}&inbound=true{% endif %}">Previous Page</a>
|
|
{% endif %}
|
|
|
|
{% if page_obj.has_next %}
|
|
<a class="button" href=".?page={{ page_obj.next_page_number }}{% if inbound %}&inbound=true{% endif %}">Next Page</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|