Blog Posts
Manage, edit, or publish articles on your platform
Write New Post
| Title |
Author |
Views |
Status |
Created Date |
Actions |
{% for post in page_obj %}
{% 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" }} |
|
{% empty %}
|
No blog posts found matching your criteria.
|
{% endfor %}
{% if page_obj.has_other_pages %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} posts
{% endif %}