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

{{ user.username }}

Name: {{ user.first_name }} {{ user.last_name }}

Gmail: {{ user.gmail }}

Followers: {{ user.followers.count() }}

Following: {{ user.following.count() }}

{% if current_user.id != user.id %} Follow {% endif %}

Create Post | Search | Logout

Posts

{% for post in posts %}

{{ post.title }}

{{ post.content }}

{% endfor %} {% endblock %}