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

{{ post.title }}

{% if post.published_date %}
{{ post.published_date}}
{% endif %} {% if post.tags.names %}
{% for tag in post.tags.names %} {{ tag }} {% endfor %}
{% endif %}

{{ post.text|safe|linebreaksbr }}

x Удалить пост "{{ post.title }}"?
{% csrf_token %}
{% endblock %}