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

内容详情 - {{ content.title }}

返回内容列表 查看设备
内容信息
设备 {{ device.name }} ({{ device.device_id }})
标题 {{ content.title }}
版本 v{{ content.version }}
描述 {{ content.description or '无' }}
状态 {% if content.is_active %} 活跃 {% else %} 禁用 {% endif %}
时区 {{ content.timezone }}
时间格式 {{ content.time_format }}
创建时间 {{ content.created_at.strftime('%Y-%m-%d %H:%M:%S') }}
内容操作
上传图片
推送历史
最后推送时间 {{ content.last_pushed_at.strftime('%Y-%m-%d %H:%M') if content.last_pushed_at else '从未' }}
推送次数 {{ content.push_count or 0 }}
{% if content.image_path %}
图片预览
{% endif %} {% if layout_config %}
布局配置
{{ layout_config | tojson(indent=2) }}
{% endif %}
设备信息
设备ID {{ device.device_id }}
设备名称 {{ device.name }}
应用场景 {{ device.scene }}
状态 {% if device.is_active %} {% if device.is_online %} 在线 {% else %} 离线 {% endif %} {% else %} 禁用 {% endif %}
最后上线 {{ device.last_online.strftime('%Y-%m-%d %H:%M:%S') if device.last_online else '从未' }}
{% endblock %} {% block scripts %} {% endblock %}