1
0
Fork 0
bookwyrm/bookwyrm/templates/followers.html

39 lines
1.1 KiB
HTML
Raw Normal View History

2020-03-16 17:09:45 -07:00
{% extends 'layout.html' %}
2020-12-12 18:25:04 -08:00
{% load bookwyrm_tags %}
2020-03-16 17:09:45 -07:00
{% block content %}
2020-11-10 13:39:37 -08:00
<div class="block">
<h1 class="title">
{% if is_self %}Your
{% else %}
{% include 'snippets/username.html' with user=user possessive=True %}
{% endif %}
followers
</h1>
</div>
2020-11-06 12:02:25 -08:00
{% include 'snippets/user_header.html' with user=user %}
2020-03-16 17:09:45 -07:00
2020-09-29 13:39:44 -07:00
<div class="block">
<h2 class="title">Followers</h2>
2020-03-16 17:09:45 -07:00
{% for followers in followers %}
2020-09-29 13:39:44 -07:00
<div class="block">
<div class="field is-grouped">
<div class="control">
{% include 'snippets/avatar.html' with user=followers %}
</div>
<div class="control">
{% include 'snippets/username.html' with user=followers show_full=True %}
</div>
<div class="control">
{% include 'snippets/follow_button.html' with user=followers %}
</div>
2020-03-16 17:09:45 -07:00
</div>
</div>
{% endfor %}
{% if not followers.count %}
<div>{{ user|username }} has no followers</div>
{% endif %}
</div>
{% endblock %}