{% extends 'admin/base.html' %} {% block title %}仪表盘{% endblock %} {% block page_title %}仪表盘{% endblock %} {% block content %}
📄
{{ stats.total_articles }}
文章总数
{{ stats.published_articles }}
已发布
📁
{{ stats.total_categories }}
分类数
👁️
{{ stats.total_views }}
总阅读量

最近文章

+ 新建文章
{% if recent_articles.items %} {% for article in recent_articles.items %} {% endfor %}
标题 分类 状态 阅读量 更新时间
{{ article.title }} {{ article.category.name if article.category else '-' }} {% if article.is_published %} 已发布 {% else %} 草稿 {% endif %} {{ article.view_count }} {{ article.updated_at|datetime_format('%Y-%m-%d %H:%M') }}
{% else %}

暂无文章,创建第一篇文章

{% endif %}
{% endblock %}