{% extends 'admin/base.html' %} {% block title %}文章管理{% endblock %} {% block page_title %}文章管理{% endblock %} {% block content %}
+ 新建文章
全部 已发布 草稿
{% if articles.items %} {% for article in 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') }}
编辑
{% if articles.pages > 1 %} {% endif %} {% else %}

暂无文章

创建第一篇文章
{% endif %} {% endblock %}