forked from mirrors/bookwyrm
30 lines
797 B
HTML
30 lines
797 B
HTML
|
{% extends 'user/layout.html' %}
|
||
|
{% load i18n %}
|
||
|
{% load bookwyrm_tags %}
|
||
|
|
||
|
{% block panel %}
|
||
|
<div class="block">
|
||
|
{% for follow in follow_list %}
|
||
|
<div class="block columns">
|
||
|
<div class="column">
|
||
|
<a href="{{ follower.local_path }}">
|
||
|
{% include 'snippets/avatar.html' with user=follow %}
|
||
|
{{ follow.display_name }}
|
||
|
</a>
|
||
|
({{ follow.username }})
|
||
|
</div>
|
||
|
<div class="column is-narrow">
|
||
|
{% include 'snippets/follow_button.html' with user=follow %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
|
||
|
{% if not follow_list %}
|
||
|
{% block nullstate %}
|
||
|
{% endblock %}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
{% include 'snippets/pagination.html' with page=follow_list path=request.path %}
|
||
|
{% endblock %}
|