{{ user.username }}

{% if user.about_me %}

{{ user.about_me }}

{% endif %} {% if user.last_seen %}

{{ _('Last seen on') }}: {{ moment(user.last_seen).format('lll') }}

{% endif %}

{{ _('%(count)d followers', count=user.followers.count()) }}, {{ _('%(count)d following', count=user.followed.count()) }}

{% if user != current_user %} {% if not current_user.is_following(user) %} {{ _('Follow') }} {% else %} {{ _('Unfollow') }} {% endif %} {% endif %}