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

Recent Posts

{% for post in recent_posts %} {% else %} {% endfor %}
Title Channel Status Created
{{ post.title or 'Untitled' }} {{ post.channel_title or '-' }} {{ 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() %} {% if ct.admin_menu %} New {{ ct.label }} {% endif %} {% endfor %}
{% endblock %}