{% extends 'dashboard/base.html' %} {% block title %}Posts View{% endblock %} {% block content %}
Title: {{ blog_post.title }}
Author: {{ blog_post.user }}
Content: {{ blog_post.content|safe }}
Status: {{ blog_post.status }}
Tags: {% for tag in blog_post.tags.all %}{{ tag }}{% if not forloop.last %}, {% endif %}{% endfor %}
Keywords: {{ blog_post.keywords|safe }}
{% endblock %}