bookwyrm-mastodon/bookwyrm/templates/user/following.html

34 lines
974 B
HTML
Raw Normal View History

2021-01-29 12:05:53 -05:00
{% extends 'user/user_layout.html' %}
2021-02-27 21:48:10 -05:00
{% load i18n %}
2020-12-12 21:25:04 -05:00
{% load bookwyrm_tags %}
2020-11-10 16:39:37 -05:00
2021-01-29 12:05:53 -05:00
{% block header %}
<h1 class="title">
Users following
{% if is_self %}you
{% else %}
{% include 'snippets/username.html' with user=user %}
{% endif %}
</h1>
{% endblock %}
2020-03-16 20:09:45 -04:00
2021-01-29 12:05:53 -05:00
{% block panel %}
2020-09-29 16:39:44 -04:00
<div class="block">
2021-02-27 21:48:10 -05:00
<h2 class="title">{% trans "Following" %}</h2>
2020-03-16 20:09:45 -04:00
{% for follower in user.following.all %}
2021-02-23 16:04:24 -05:00
<div class="block columns">
<div class="column">
{% include 'snippets/avatar.html' with user=follower %}
{% include 'snippets/username.html' with user=follower show_full=True %}
</div>
<div class="column">
{% include 'snippets/follow_button.html' with user=follower %}
2020-03-16 20:09:45 -04:00
</div>
</div>
{% endfor %}
{% if not following.count %}
2021-02-27 21:48:10 -05:00
<div>{% blocktrans with username=user|username %}{{ username }} isn't following any users{% endblocktrans %}</div>
2020-03-16 20:09:45 -04:00
{% endif %}
</div>
{% endblock %}