{% extends "admin/base.html" %} {% block title %}内容管理 - 墨水屏管理系统{% endblock %} {% block content %}

内容管理

筛选条件
{% if content_list %}
内容列表
{% for item in content_list %} {% endfor %}
设备 标题 版本 类型 状态 创建时间 操作
{{ item.device.name if item.device else item.content.device_id }} {{ item.content.title }} v{{ item.content.version }} {% if item.content.image_path %} 图片 {% else %} 文本 {% endif %} {% if item.content.is_active %} 活跃 {% else %} 禁用 {% endif %} {{ item.content.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}
暂无内容

{% if filtered %} 该设备还没有任何内容。 添加内容 {% else %} 系统中还没有任何内容。 添加第一个内容 {% endif %}

{% endif %} {% endblock %} {% block scripts %} {% endblock %}