<table>
|
<tr class="title">
|
<td style="width:7%">序号</td>
|
<td style="width:10%">配置关系</td>
|
<td style="width:15%">搜索码</td>
|
<td style="width:20%">分类名称</td>
|
<td style="width:10%">配置项名称</td>
|
</tr>
|
[#if devices??&&devices?size>0]
|
[#list devices as device]
|
<tr>
|
<td><input type="hidden" name="dslId" value="${device.ID}">${pagesize+(device_index+1)}</td>
|
<td>${Constants.getCMDB_CI_RELATION_RELATION_Label(device.RELATION)}</td>
|
<td>${device.SEACHCODE}</td>
|
<td>${device.FIRSTLEVELNAME}->${device.SECONDLEVELNAME}->${device.THIRDLEVELNAME}</td>
|
<td>${device.CINAME}</td>
|
</tr>
|
[/#list]
|
[#else]
|
<tr>
|
<td align="center" colspan="6">暂无信息</td>
|
</tr>
|
[/#if]
|
</table>
|