{% load i18n %} {% load bookwyrm_tags %} {% load humanize %}
{% for user in suggested_users %}
{% include 'snippets/avatar.html' with user=user large=True %} {{ user.display_name|truncatechars:10 }} @{{ user|username|truncatechars:8 }} {% include 'snippets/follow_button.html' with user=user minimal=True %} {% if user.mutuals %}

{% blocktrans with mutuals=user.mutuals|intcomma count counter=user.mutuals %}{{ mutuals }} follower you follow{% plural %}{{ mutuals }} followers you follow{% endblocktrans %}

{% elif user.shared_books %}

{% blocktrans 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 %}

{% endif %}
{% endfor %}