{% extends "base.html" %} {% block title %}{{ user.username }}'s Profile{% endblock %} {% block content %}

{{ user.username }}'s Profile

{% if user.profile_picture %} Profile Picture {% else %}
{{ user.username[0].upper() }}
{% endif %}

Bio:

{{ user.rendered_bio|safe or "No bio available." }}
Stats

Posts: {{ post_count }}

Total Likes: {{ like_count }}

Total Comments: {{ comment_count }}

{% if current_user.is_authenticated and current_user.id == user.id %} {% endif %}

Posts

{% for post in posts %}

{{ post.content|safe }}

{% if post.image_url %} Post image {% endif %}
{% if post.author.profile_picture %} Profile Picture {% else %}
{{ post.author.username[0].upper() }}
{% endif %} {{ post.author.username }}

{{ post.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}

{% if current_user.is_authenticated and current_user.id == post.author.id %} Edit {% endif %}
{% endfor %}
{% if current_user.is_authenticated and current_user.id == user.id %} {% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %}