视频主设备管理系统

Device Management System

后台管理 API
运行中

{{ total_count }}

设备总数

{{ status_counts.normal }}

正常运行

{{ status_counts.warning }}

告警

{{ status_counts.offline }}

离线

{{ status_counts.repair }}

维修中

{{ warranty_expiring }}

保修即将到期

{% if devices_by_location %} {% for location, devices in devices_by_location.items %}

{{ location }}

{{ devices|length }} 台
{% for device in devices %} {% endfor %}
设备名称 型号 楼栋/机柜 主IP 主序列号 状态 负责人 服役天数 操作
{{ device.device_name }}
{{ device.brand|default:"" }}
{{ device.model|default:"-" }} {{ device.building|default:"-" }} {% if device.cabinet %} / {{ device.cabinet }}{% endif %} {% if device.floor %} {{ device.floor }}{% endif %} {% with primary_ip=device.ips.all|first %} {% if primary_ip and primary_ip.is_primary %} {{ primary_ip.ip_address }} {% else %} {% for ip in device.ips.all %} {% if ip.is_primary %} {{ ip.ip_address }} {% endif %} {% empty %} - {% endfor %} {% endif %} {% endwith %} {% for serial in device.serials.all %} {% if serial.is_primary %} {{ serial.serial_number }} {% endif %} {% empty %} - {% endfor %} {{ device.get_status_display }} {{ device.responsible_person|default:"-" }} {{ device.service_duration_days }} 天 编辑 | 删除
{% endfor %} {% else %}

暂无设备数据

前往后台添加设备 →
{% endif %}