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

{{ _('Edit your profile') }}

{% elif not current_user.is_following(user) %}

{{ form.hidden_tag() }} {{ form.submit(value=_('Follow'), class_='btn btn-default') }}

{% else %}

{{ form.hidden_tag() }} {{ form.submit(value=_('Unfollow'), class_='btn btn-default') }}

{% endif %}
{% for post in posts %} {% include '_post.html' %} {% endfor %} {% endblock %}