{% extends 'ups_manager/base.html' %} {% block content %}

欢迎使用 UPS 管理系统

后台管理
UPS 主机数量

{{ ups_count }}

电池数量

{{ battery_count }}

联系人数量

{{ contact_count }}

维修记录

{{ maintenance_count }}

UPS主机与电池汇总
{% for item in ups_with_batteries %} {% empty %} {% endfor %}
UPS主机型号 数量(台) 电池品牌 电池存放地址 在用电池型号 电池单块重量 数量(块)
{{ item.ups_brand }} {{ item.ups_model }} {{ item.ups_quantity }} {{ item.battery_brand }} {{ item.battery_location }} {{ item.battery_model }} {{ item.battery_weight }} kg {{ item.battery_quantity }}
暂无数据
按存放位置汇总
{% for location, data in location_summary %} {% empty %} {% endfor %}
存放位置 UPS数量(台) 电池数量(块) 总重量(kg) UPS型号
{{ location }} {{ data.ups_count }} {{ data.battery_count }} {{ data.total_weight }} {{ data.ups_models|join:', ' }}
暂无数据
最近维修记录
{% if recent_maintenances %} {% for record in recent_maintenances %} {% endfor %}
UPS主机 维修日期 维修人员
{{ record.ups_host.model }} {{ record.maintenance_date }} {{ record.technician }}
{% else %}

暂无维修记录

{% endif %}
最近添加的电池
{% if recent_batteries %} {% for battery in recent_batteries %} {% endfor %}
品牌/型号 位置 已使用
{{ battery.brand }} {{ battery.model }} {{ battery.location }} {{ battery.used_years|default:"-" }} 年
{% else %}

暂无电池记录

{% endif %}
{% endblock %}