{% extends 'blog/partials/base.html' %} {% block content %} {% load static %}
{% include 'blog_admin/partials/posts_topbar.html' %}

{{ title }}

{% for message in messages %}

{{ message }}

{% endfor %} {% for post in posts %} {% endfor %}
Article Author Created Category Actions
{% if post.is_public %} {% comment %} Published {% endcomment %} Home {% else %} {% comment %} Draft {% endif %} {% endcomment %} Home {% endif %} Cover Image

{{ post.title }}

{{ post.author }} {{ post.date }} {{ post.category }}

Edit Post Metadata

Edit Post Contents

Delete Post

{% if post.is_public %}

Unpublish Post

{% else %}

Publish Post

{% endif %}
{% if num_pages and page %} {% endif %}
{% endblock %}