{% extends "base.html" %} {% block title %}{{ user.username }}'s Profile{% endblock %} {% block content %}
Bio:
Posts: {{ post_count }}
Total Likes: {{ like_count }}
Total Comments: {{ comment_count }}
{% if current_user.is_authenticated and current_user.id == user.id %} {% endif %}{{ post.content|safe }}
{% if post.image_url %} {% endif %}{{ post.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
{% if current_user.is_authenticated and current_user.id == post.author.id %} Edit {% endif %}
Comments:
{% for comment in post.comments if not comment.parent %} {% with depth=1 %} {% include 'comment.html' %} {% endwith %} {% endfor %}