{% extends "base.html" %} {% block content %}

{{user.profileFullName}} ({{user.profileUsername}})

{{user.profileBio}}

{% if not current_user.is_following_tw(user.profileUsername.replace('@','')) %}

{{ form.hidden_tag() }} {{ form.submit(value='Follow') }}

{% else %}

{{ form.hidden_tag() }} {{ form.submit(value='Unfollow') }}

{% endif %}
{{user.followers}}
FOLLOWERS
{{user.following}}
FOLLOWING
{{user.tweets}}
TWEETS
{{user.likes}}
LIKES
{% if not posts %}

This feed is empty.

{% elif posts == 'Protected' %}

This account's tweets are protected.

{% else %} {% for post in posts %} {% include '_twitter_post.html' %} {% endfor %}


{% endif %}
{% endblock %}