{% extends 'base.html' %} {% block content %}

My Posts

{% for post in posts %}

{{ post.title }}

Published on {{ post.published_at | date:"M d, Y" }} by {{ post.author | title}}

{{ post.content }}

Edit Delete

{% endfor %} {% endblock content %}