forked from mirrors/bookwyrm
28 lines
839 B
HTML
28 lines
839 B
HTML
{% extends 'layout.html' %}
|
|
{% load fr_display %}
|
|
{% block content %}
|
|
{% include 'user_header.html' %}
|
|
|
|
<div class="block">
|
|
<h2 class="title">Following</h2>
|
|
{% for follower in user.following.all %}
|
|
<div class="block">
|
|
<div class="field is-grouped">
|
|
<div class="control">
|
|
{% include 'snippets/avatar.html' with user=follower %}
|
|
</div>
|
|
<div class="control">
|
|
{% include 'snippets/username.html' with user=follower show_full=True %}
|
|
</div>
|
|
<div class="control">
|
|
{% include 'snippets/follow_button.html' with user=follower %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% if not following.count %}
|
|
<div>No one is following {{ user|username }}</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|