{% extends 'LayoutMain.html' %} {% load static %} {% block title %}Dashboard - All Posts{% endblock %} {% block content %}
All Blog Posts
Add New Post
Show entries
Sort by:
Search:
{% for post in posts %} {% empty %} {% endfor %}
# Image Title Category Status Featured Created At Actions
{{ forloop.counter }} {% if post.featured_image %} {{ post.title }} {% else %}
None
{% endif %}
{{ post.title }} {{ post.category.category_name }} {% if post.status == 'Published' %} Published {% else %} Draft {% endif %} {% if post.is_featured %} Yes {% else %} {% endif %} {{ post.created_at|date:"M d, Y" }}

No blog posts found. Click "Add New Post" to create one.
Showing 1 to {{ posts|length }} of {{ posts|length }} entries
{% endblock %}