{% extends 'django-blogs/base.html' %} {% block dropdown_options %} {% if post.author == user.username %} Edit Delete {% endif %} {% endblock %} {% block content %}

{{ post.heading | safe }}

{{ post.published_on | date:"DATE_FORMAT" }}
{{post.author}}
{{ post.content | safe }}
{% endblock %}