{% extends 'dashboard/base.html' %} {% block title %}Manage Blogs - Orbia CMS{% endblock %} {% block content %}

Blog Posts

Manage, edit, or publish articles on your platform

Write New Post
{% if query or status_filter %} Reset {% endif %}
{% for post in page_obj %} {% empty %} {% endfor %}
Title Author Views Status Created Date Actions
{% if post.featured_image %} {% else %}
{% endif %}
{{ post.title|truncatechars:45 }} /blog/{{ post.slug }}/
{{ post.author.get_full_name|default:post.author.username }} {{ post.views_count }} {% if post.status == 'PUBLISHED' %} Published {% else %} Draft {% endif %} {{ post.created_at|date:"M d, Y" }}
No blog posts found matching your criteria.
{% if page_obj.has_other_pages %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} posts
{% endif %}
{% endblock %}