This commit is contained in:
Marco Audiffredi 2024-07-17 11:35:41 +02:00
parent 0bf53f3c2f
commit 7762003b50
2 changed files with 25 additions and 11 deletions

View File

@ -0,0 +1,5 @@
{
"version": 1,
"isRoot": true,
"tools": {}
}

View File

@ -137,8 +137,11 @@
<td> <td>
@Html.DisplayFor(modelItem => item.Note) @Html.DisplayFor(modelItem => item.Note)
</td> </td>
@if (item.ConsFatta == null)
{
<td> <td>
@if (!string.IsNullOrEmpty( item.Prog)) @if (!string.IsNullOrEmpty(item.Prog))
{ {
<img alt="nocons" src="@Url.Content("~/images/warning.png")" style="width:24px;height:24px;"> <img alt="nocons" src="@Url.Content("~/images/warning.png")" style="width:24px;height:24px;">
} }
@ -148,6 +151,12 @@
<td> <td>
<a href="@Url.ActionLink("ModificaDestinazione", "Destinazioni", new { serial=item.Brserial })" title="Modifica Destinazione" class="links"><img alt="nocons" src="@Url.Content("~/images/system.png")" style="width:24px;height:24px;"></a> <a href="@Url.ActionLink("ModificaDestinazione", "Destinazioni", new { serial=item.Brserial })" title="Modifica Destinazione" class="links"><img alt="nocons" src="@Url.Content("~/images/system.png")" style="width:24px;height:24px;"></a>
</td> </td>
}
else
{
<td>&nbsp;</td>
<td>&nbsp;</td>
}