{% extends "assetapp/base.html" %} {% block title %}资产列表 - 希姆计算资产管理{% endblock %} {% block content %}

资产列表

导出Excel 导入Excel 新增资产
{% for asset in page_obj %} {% empty %} {% endfor %}
ID 机房 机柜 机柜位置 资产编号 设备名称 分类 品牌/型号 资产面值 BMC地址 IP地址 显卡类型 卡数 负责人 使用部门 维护人 业务类型 状态 操作
{{ asset.id|stringformat:"s"|truncatechars:3 }} {{ asset.location|default:"-"|truncatechars:5 }} {{ asset.cabinet|default:"-"|truncatechars:3 }} {{ asset.cabinet_position|default:"-"|truncatechars:10 }} {{ asset.asset_number|truncatechars:3 }} {{ asset.name }} {{ asset.category.name }} {{ asset.brand }} {% if asset.model %}{{ asset.model }}{% endif %} {% if asset.asset_value %}¥{{ asset.asset_value }}{% else %}-{% endif %} {{ asset.bmc_address|default:"-" }} {{ asset.ip_address|default:"-" }} {{ asset.gpu_type|default:"-" }} {{ asset.gpu_count|default:"-" }} {{ asset.responsible_person|default:"-" }} {{ asset.department|default:"-" }} {{ asset.user|default:"-" }} {{ asset.business_type|default:"-" }} {{ asset.get_status_display }}
暂无资产数据
{% if page_obj.has_other_pages %} {% endif %}
共 {{ page_obj.paginator.count }} 条记录,第 {{ page_obj.number }}/{{ page_obj.paginator.num_pages }} 页
{% endblock %}