{% extends "base.html" %} {% load thumbnail %} {% block title %}صفحه پروفایل {{ user.username }}{% endblock %} {% block content %}

{{ user.username }}

{% if request.user.username != user.username %}
{% endif %}
{{ user.first_name }} {% if user.profile.bio %}
{{ user.profile.bio }} {% endif %}
{% if user == request.user %} {% endif %}

{% include 'post/add-posts.html' with posts=user.posts.all %}
{% endblock %} {% block script %} {% endblock script %}