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