40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}Users followed by @{{u.username}}{% endblock %}
|
|
{% block content %}
|
|
<h5 class="my-3">Users followed by @{{u.username}} ({{total}} user{{macros.plural(total)}})</h5>
|
|
<div class="overflow-x-auto">
|
|
<table class="table table-striped mb-5">
|
|
<thead class="bg-primary text-white">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th class="disable-sort-click">Following since</td>
|
|
{% if v.id == u.id %}
|
|
<th class="disable-sort-click"></th>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tbody id="followers-table">
|
|
{% for follow, user in users %}
|
|
<tr>
|
|
<td>{% include "user_in_table.html" %}</td>
|
|
<td {% if follow.created_utc > 1599343262 %}data-time="{{follow.created_utc}}"{% endif %}></td>
|
|
{% if v.id == u.id %}
|
|
<td>
|
|
<div class="btn btn-danger" data-nonce="{{g.nonce}}" data-onclick="removeFollowing(this, '{{user.username}}')">
|
|
Unfollow
|
|
</div>
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script defer src="{{'js/following.js' | asset}}"></script>
|
|
{% endblock %}
|
|
|
|
{% block pagenav %}
|
|
{% include "pagination.html" %}
|
|
{% endblock %}
|