{% extends "assetapp/base.html" %} {% block title %}{% if action == 'create' %}新增资产{% else %}编辑资产{% endif %}{% endblock %} {% block content %}
返回

{% if action == 'create' %}新增资产{% else %}编辑资产 - {{ asset.asset_number }}{% endif %}

{% csrf_token %}
基本信息
{{ form.asset_number }} {% if form.asset_number.errors %}
{{ form.asset_number.errors.0 }}
{% endif %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.category }}
{{ form.brand }}
{{ form.model }}
{{ form.asset_value }}
{{ form.serial_number }}
位置与网络
{{ form.location }}
{{ form.cabinet }}
{{ form.cabinet_position }}
{{ form.bmc_address }}
{{ form.ip_address }}
{{ form.gpu_type }}
{{ form.gpu_count }}
{{ form.status }}
{{ form.responsible_person }}
{{ form.department }}
{{ form.user }}
{{ form.business_type }}
采购与质保
{{ form.purchase_date }}
{{ form.warranty_expire }}
{{ form.supplier }}
备注
{{ form.remark }}
取消
{% endblock %}