{% extends 'navbar.html' %} {% load crispy_forms_tags %} {% block title %} User Profile Page {% endblock %} {% block css_block %} {% endblock %} {% block body_block %}
{% if user_other.user_profile.profile_pic %} {% else %} {% endif %}

{{ user_other.username }}   {% if not already_followed %} Follow {% else %} UnFollow {% endif %}

{{ user_other.post.count }} Posts    {{ user_other.follower.count }} Followers    {{ user_other.following.count }} Following


{{ user_other.user_profile.full_name }}

{{ user_other.user_profile.description }}


{% for post in user_other.post.all %}
{% endfor %}
{% endblock %}