{% 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 %}

Focomy バージョン

{% if update_info.has_update %}
新バージョン {{ update_info.latest_version }} が利用可能です {% if update_info.release_url %} リリースノート → {% endif %}

アップデート方法:

pip install --upgrade focomy {% else %} 最新バージョン ({{ update_info.current_version }}) {% endif %}
{% endblock %}