{% extends "admin_base.html" %} {% load custom_filters %} {% load static %} {% block content %}

{{ page_title|default:"Blog Management" }}

Dashboard

Total Blogs

{{ contents.paginator.count }}

Published

{{ published_count }}

Authors

{{ author_count }}

{% for blog in contents %}
{{ blog.get_status_display }}
{% if blog.feature_this %}
Featured
{% endif %}
{% if blog.category %} {{ blog.category.title }} {% endif %} {% if blog.topic %} {{ blog.topic.title }} {% endif %}

{{ blog.title }}

{% for author in blog.authors.all %}

{{ author.name }}

{% endfor %}
{{ blog.content|striptags|truncatewords:30|safe }}
{% if blog.published_time %} {{ blog.published_time|date:"M d, Y" }} {% else %} {{ blog.created_at|date:"M d, Y"|default:"Recent" }} {% endif %}
{{ blog.total_views }}
{% empty %}

No blogs found

Try adjusting your search or create a new blog post

Create New Blog
{% endfor %}
{% if contents.paginator.num_pages > 1 %}
{% if contents.has_previous %} First Previous {% endif %} Page {{ contents.number }} of {{ contents.paginator.num_pages }} {% if contents.has_next %} Next Last {% endif %}
{% endif %}
{% endblock %}