{% extends "admin/base.html" %} {% block title %}Dashboard - Focomy{% endblock %} {% block header_title %}Dashboard{% endblock %} {% block content %}
{% for ct_name, ct in content_types.items() %}
{{ ct.label }}
{{ stats.get(ct_name, 0) }}
{% endfor %}

Recent Posts

View All
{% for post in recent_posts %} {% else %} {% endfor %}
Title Status Created
{{ post.title or 'Untitled' }} {{ post.status or 'draft' }} {{ post.created_at[:10] if post.created_at else '-' }}
No posts yet

Quick Actions

{% for ct_name, ct in content_types.items() %} New {{ ct.label }} {% endfor %}
{% endblock %}