{% extends "base.html" %} {% block app_content %}
{{ _('User') }}: {{ 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 %} {% elif not current_user.is_following(user) %}{% else %} {% endif %} |