{{ device.device_name }}

{{ device.location|default:"-" }}

基本信息

状态

{{ device.get_status_display }}

品牌

{{ device.brand|default:"-" }}

型号

{{ device.model|default:"-" }}

地点

{{ device.location|default:"-" }}

楼栋/机柜

{{ device.building|default:"-" }} {% if device.floor %} {{ device.floor }}{% endif %} {% if device.cabinet %} / {{ device.cabinet }}{% endif %}

MAC地址

{{ device.mac_address|default:"-" }}

运维人员

{{ device.responsible_person|default:"-" }}

启用日期

{{ device.enable_date|default:"-" }}

服役时长

{{ device.service_duration_days }} 天

保修到期

{{ device.warranty_expire|default:"-" }}

最后巡检

{{ device.last_inspection_date|default:"-" }}

IP地址 {{ device_ips|length }}

{% if device_ips %}
{% for ip in device_ips %} {% endfor %}
IP地址 类型 主IP 子网掩码 网关 VLAN
{{ ip.ip_address }} {{ ip.ip_type|default:"-" }} {% if ip.is_primary %} {% else %} {% endif %} {{ ip.subnet_mask|default:"-" }} {{ ip.gateway|default:"-" }} {{ ip.vlan_id|default:"-" }}
{% else %}

暂无IP地址

{% endif %}

序列号 {{ device_serials|length }}

{% if device_serials %}
{% for serial in device_serials %} {% endfor %}
序列号 类型 主序列号 备注
{{ serial.serial_number }} {{ serial.serial_type|default:"-" }} {% if serial.is_primary %} {% else %} {% endif %} {{ serial.remark|default:"-" }}
{% else %}

暂无序列号

{% endif %}

维修记录 {{ maintenance_records|length }}

{% if maintenance_records %}
{% for record in maintenance_records %}
{{ record.maintenance_date }} {% if record.cost %}费用: ¥{{ record.cost }}{% endif %} {% if record.maintenance_by %} · {{ record.maintenance_by }}{% endif %}
{% if record.fault_description %}

故障描述

{{ record.fault_description }}

{% endif %} {% if record.repair_content %}

维修内容

{{ record.repair_content }}

{% endif %} {% if record.replaced_parts %}

更换配件

{{ record.replaced_parts }}

{% endif %}
{% endfor %}
{% else %}

暂无维修记录

{% endif %}

附件 {{ attachments|length }}

{% if attachments %}
{% for att in attachments %}

{{ att.file.name }}

{{ att.uploaded_at|date:"Y-m-d" }}

{% endfor %}
{% else %}

暂无附件

{% endif %}