diff --git a/bookwyrm/templates/groups/find_users.html b/bookwyrm/templates/groups/find_users.html new file mode 100644 index 00000000..9154a527 --- /dev/null +++ b/bookwyrm/templates/groups/find_users.html @@ -0,0 +1,6 @@ +{% extends 'groups/group.html' %} + +{% block panel %} +
{% trans "This group has no members" %}
- {% else %} -{% trans "This group has no lists" %}
{% else %} -+ {% blocktrans trimmed with mutuals=user.mutuals|intcomma count counter=user.mutuals %} + {{ mutuals }} follower you follow + {% plural %} + {{ mutuals }} followers you follow{% endblocktrans %} +
+ {% elif user.shared_books %} ++ {% blocktrans trimmed with shared_books=user.shared_books|intcomma count counter=user.shared_books %} + {{ shared_books }} book on your shelves + {% plural %} + {{ shared_books }} books on your shelves + {% endblocktrans %} +
+ {% elif request.user in user.following.all %} ++ {% trans "Follows you" %} +
+ {% endif %} +{% trans "Members can add and remove books on your group's book lists" %}
+ +{% block panel %} +