diff --git a/MP.Land/Pages/IobList.razor b/MP.Land/Pages/IobList.razor
index 16025fd2..fdd25c55 100644
--- a/MP.Land/Pages/IobList.razor
+++ b/MP.Land/Pages/IobList.razor
@@ -18,10 +18,67 @@
+ @if (isLoading || ListRecords == null)
+ {
+
+ }
+ else if (totalCount == 0)
+ {
+
Nessun record trovato
+ }
+ else
+ {
+
+
+
+
+
+ | Macchina |
+ Idx |
+ Cod |
+ Descr |
+ Posiz |
+ Note |
+ IOB |
+
+
+
+ @foreach (var item in ListRecords)
+ {
+
+ | @item.Nome |
+ @item.IdxMacchina |
+ @item.CodMacchina |
+ @item.Descrizione |
+
+ @if (string.IsNullOrEmpty(item.Locazione))
+ {
+ -
+ }
+ else
+ {
+ @($"{item.Locazione} | ({item.RowNum},{item.ColNum})")
+ }
+ |
+ @item.Note |
+ ...iob... |
+
+ }
+
+
+
+ |
+
+ |
+
+
+
+
+
+ }
diff --git a/MP.Land/Pages/IobList.razor.cs b/MP.Land/Pages/IobList.razor.cs
index ebf22f27..0630f816 100644
--- a/MP.Land/Pages/IobList.razor.cs
+++ b/MP.Land/Pages/IobList.razor.cs
@@ -1,6 +1,8 @@
+using DnsClient.Protocol;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Configuration;
using Microsoft.JSInterop;
+using MP.AppAuth.Models;
using MP.AppAuth.Services;
using MP.Land.Data;
using NLog;
@@ -20,7 +22,9 @@ namespace MP.Land.Pages
///
private static Logger Log = LogManager.GetCurrentClassLogger();
- private List