{% extends "cms/base.html" %} {% block title %}页面管理 - ARIFU CMS{% endblock %} {% set active='pages' %} {% block content %}

📄 页面管理 {{ pages|length }} ➕ 新建页面

{% if pages %} {% for p in pages %} {% endfor %}
排序标题Slug模板状态更新操作
⋮⋮ {{ p.title }}{% if p.subtitle %}
{{ p.subtitle }}{% endif %}
/{{ p.slug }} {{ p.template }} {{ p.status }} {{ p.updated_at[:10] }}
{% else %}
📄

还没有页面

{% endif %}
{% endblock %}