@if (isLoading || ListRecords == null)
{
}
else if (totalCount == 0)
{
Nessun record trovato
}
else
{
| IdxMacc |
Nome |
@if (IsSuperAdmin)
{
Descr |
}
OS |
PC IOB |
Adapter |
CNC/PLC |
Conf |
@foreach (var item in ListRecords)
{
| @item.IdxMacchina |
@item.Nome
@item.CodMacchina
|
@if (IsSuperAdmin)
{
@item.Descrizione
@item.Note
|
}
@item.OS |
@if (!string.IsNullOrEmpty(item.IobName))
{
@item.IobName
@item.IobIpv4
@item.IobMac
}
else
{
-
}
|
@if (!string.IsNullOrEmpty(item.AdapName))
{
@item.AdapName
@item.AdapType
@item.AdapVers
}
else
{
-
}
|
@if (!string.IsNullOrEmpty(item.TargetIp))
{
@item.TargetIp
port: @item.TargetPort
}
else
{
-
}
|
|
}
|
|
}