forked from mirrors/bookwyrm
32 lines
No EOL
1.3 KiB
HTML
32 lines
No EOL
1.3 KiB
HTML
{% load i18n %}
|
|
{% load utilities %}
|
|
{% load humanize %}
|
|
{% load bookwyrm_tags %}
|
|
|
|
<h2 class="title is-5">Group Members</h2>
|
|
<p class="subtitle is-6">{% trans "Members can add and remove books on your group's book lists" %}</p>
|
|
|
|
<div class="column is-flex is-flex-grow-0">
|
|
{% for membership in group.memberships.all %}
|
|
{% with member=membership.user %}
|
|
<div class="box has-text-centered is-shadowless has-background-white-bis my-0 mx-2">
|
|
<a href="{{ member.local_path }}" class="has-text-black">
|
|
{% include 'snippets/avatar.html' with user=member large=True %}
|
|
<span title="{{ member.display_name }}" class="is-block is-6 has-text-weight-bold">{{ member.display_name|truncatechars:10 }}</span>
|
|
<span title="@{{ member|username }}" class="is-block pb-3">@{{ member|username|truncatechars:8 }}</span>
|
|
</a>
|
|
{% if group.user == member %}
|
|
<span class="icon icon-star-full" title="Manager">
|
|
<span class="is-sr-only">Manager</span>
|
|
</span>
|
|
{% endif %}
|
|
{% include 'snippets/remove_from_group_button.html' with user=member group=group minimal=True %}
|
|
{% if request.user in member.following.all %}
|
|
<p class="help">
|
|
{% trans "Follows you" %}
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</div> |