2021-09-25 01:36:35 +00:00
|
|
|
{% load i18n %}
|
|
|
|
{% load utilities %}
|
|
|
|
{% load humanize %}
|
2021-09-25 09:53:06 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2021-09-25 01:36:35 +00:00
|
|
|
|
2021-09-27 11:21:00 +00:00
|
|
|
<h2 class="title is-5">Group Members</h2>
|
2021-09-25 01:36:35 +00:00
|
|
|
<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">
|
2021-10-02 00:47:42 +00:00
|
|
|
{% for membership in group.memberships.all %}
|
|
|
|
{% with member=membership.user %}
|
2021-09-25 09:53:06 +00:00
|
|
|
<div class="box has-text-centered is-shadowless has-background-white-bis my-0 mx-2">
|
2021-09-25 07:34:44 +00:00
|
|
|
<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>
|
2021-09-25 01:36:35 +00:00
|
|
|
</a>
|
2021-09-27 05:36:41 +00:00
|
|
|
{% if group.user == member %}
|
2021-09-25 10:23:59 +00:00
|
|
|
<span class="icon icon-star-full" title="Manager">
|
|
|
|
<span class="is-sr-only">Manager</span>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
2021-10-02 03:48:53 +00:00
|
|
|
{% include 'snippets/remove_from_group_button.html' with user=member group=group minimal=True %}
|
|
|
|
{% if request.user in member.following.all %}
|
2021-09-25 01:36:35 +00:00
|
|
|
<p class="help">
|
|
|
|
{% trans "Follows you" %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2021-09-25 09:53:06 +00:00
|
|
|
</div>
|
2021-10-02 00:47:42 +00:00
|
|
|
{% endwith %}
|
2021-09-25 09:53:06 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|