{% extends "base.html" %} {% block title %}Dashboard - Blog Toolkit{% endblock %} {% block content %}

Dashboard

Total Blogs

{{ total_blogs }}

Total Posts

{{ total_posts }}

Authors

{{ total_authors }}

Blogs
{% if blog_data %} {% for item in blog_data %} {% endfor %}
ID Name Author Posts Method Actions
{{ item.blog.id }} {{ item.blog.name }} {% if item.blog.author_name %} {{ item.blog.author_name }} {% else %} N/A {% endif %} {{ item.post_count }} {{ item.blog.collection_method }} View
{% else %}

No blogs yet. Use the CLI to add blogs.

{% endif %}
Recent Posts
{% if recent_posts %}
    {% for post in recent_posts %}
  • {{ post.published_date[:10] if post.published_date else 'N/A' }}
    {{ post.blog_name }}
    {{ post.title[:50] }}...
  • {% endfor %}
{% else %}

No recent posts.

{% endif %}
{% endblock %}