{% extends 'base.html' %} {% block content %} {% load markdown_extras %}
Latest Posts
{% for post in posts %} {% if post.author == profileUser %}
{{ post.author.username }} @{{ post.author.id }}

{{ post.content | markdown | safe }}

{% endif %} {% endfor %}
Profile Image

{{ profileUser.username }}

@{{ profileUser.id }}

Date Joined: Jan 1, 2022

{% if profileUser == user %} Edit Profile {% endif %}
{% if user.is_authenticated %}
{% csrf_token %}
{% endif %}
{% endblock %}