{% load i18n %} {% load humanize %} {% load utilities %} {% load bookwyrm_tags %}
{% include 'snippets/avatar.html' with user=user large=True %}

{% if user.name %}{{ user.name }}{% else %}{{ user.localname }}{% endif %}

{{ user.username }}

{% blocktrans with date=user.created_date|naturaltime %}Joined {{ date }}{% endblocktrans %}

{% if is_self %} {% blocktrans count counter=user.followers.count %}{{ counter }} follower{% plural %}{{ counter }} followers{% endblocktrans %}, {% blocktrans with counter=user.following.count %}{{ counter }} following{% endblocktrans %} {% elif request.user.is_authenticated %} {% mutuals_count user as mutuals %} {% blocktrans with mutuals_display=mutuals|intcomma count counter=mutuals %}{{ mutuals_display }} follower you follow{% plural %}{{ mutuals_display }} followers you follow{% endblocktrans %} {% endif %}