{% extends 'dashboard/base.html' %} {% block title %}Dashboard Overview - AI Digital Ranker CMS{% endblock %} {% block content %}
Total Blog Posts

{{ total_posts }}

Total Blog Views

{{ total_views }}

Inquiry Leads

{{ total_leads }}

Drafts / Published

{{ draft_posts }} / {{ published_posts }}

Recent Blog Posts
View All
{% for post in recent_posts %} {% empty %} {% endfor %}
Title Status Created
{{ post.title|truncatechars:35 }} {% if post.status == 'PUBLISHED' %} Published {% else %} Draft {% endif %} {{ post.created_at|date:"M d, Y" }}
No blog posts available.
Recent Contact Leads
View All
{% for lead in recent_leads %} {% empty %} {% endfor %}
Name Subject Date
{{ lead.name }} {{ lead.subject|truncatechars:30 }} {{ lead.created_at|date:"M d, H:i" }}
No inquiry messages received yet.
{% endblock %}