VirtualTask/Views/Articoli/Details.cshtml
2025-05-28 15:50:20 +02:00

123 lines
5.5 KiB
Plaintext

@model VirtualTask.Models.Articoli
@{
ViewData["Title"] = "Dettaglio articolo";
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
}
<div class="agy-project-wrapper agy-project-page-wrapper">
<div class="container">
<div class="table-responsive">
<table class="table table-bordered table-striped table-hover align-middle">
<thead class="table-primary">
<tr>
<th scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th>
</tr>
</thead>
<tbody>
<tr>
<td class="fw-bold fs-5">
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.SlCodice)</span>
</td>
<td>@Html.DisplayFor(model => model.SlCodice)</td>
</tr>
<tr>
<td class="fw-bold fs-5">
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ArDesArt)</span>
</td>
<td>@Html.DisplayFor(model => model.ArDesArt)</td>
</tr>
<tr>
<td class="fw-bold fs-5">
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.SlCodMag)</span>
</td>
<td>@Html.DisplayFor(model => model.SlCodMag)</td>
</tr>
<tr>
<td class="fw-bold fs-5">
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.SlQtAper)</span>
</td>
<td>@Html.DisplayFor(model => model.SlQtAper)</td>
</tr>
<tr>
<td class="fw-bold fs-5">
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.LiPrezzo)</span>
</td>
<td>@Html.DisplayFor(model => model.LiPrezzo)</td>
</tr>
</tbody>
</table>
</div>
@* Hidden fields *@
@Html.HiddenFor(model => model.Azienda)
@Html.HiddenFor(model => model.AmCodice)
@Html.HiddenFor(model => model.LoCodice)
@Html.HiddenFor(model => model.LiCodLis)
@Html.HiddenFor(model => model.LiCodArt)
@Html.HiddenFor(model => model.LiDatAtt)
@Html.HiddenFor(model => model.LiQuanti)
@Html.HiddenFor(model => model.LiScont1)
@Html.HiddenFor(model => model.LiScont2)
@Html.HiddenFor(model => model.LiScont3)
@Html.HiddenFor(model => model.LiScont4)
@Html.HiddenFor(model => model.Gest_Matr)
@Html.HiddenFor(model => model.Gest_Lotti)
@Html.HiddenFor(model => model.Desc_sup)
<div>
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
</div>
</div>
</div>
@* @model VirtualTask.Models.Articoli *@
@* @{ *@
@* ViewData["Title"] = "Dettaglio articolo"; *@
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
@* } *@
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
@* <div class="container"> *@
@* <div class="row"> *@
@* <div class="col-md-4"> *@
@* <div class="col-md-10"> *@
@* <b>@Html.DisplayNameFor(model => model.SlCodice)</b> @Html.DisplayFor(model => model.SlCodice) *@
@* </div> *@
@* <div class="col-md-10"> *@
@* <b>@Html.DisplayNameFor(model => model.ArDesArt)</b> @Html.DisplayFor(model => model.ArDesArt) *@
@* </div> *@
@* <div class="col-md-10"> *@
@* <b>@Html.DisplayNameFor(model => model.SlCodMag)</b> @Html.DisplayFor(model => model.SlCodMag) *@
@* </div> *@
@* <div class="col-md-10"> *@
@* <b>@Html.DisplayNameFor(model => model.SlQtAper)</b> @Html.DisplayFor(model => model.SlQtAper) *@
@* </div> *@
@* <div class="col-md-10"> *@
@* <b>@Html.DisplayNameFor(model => model.LiPrezzo)</b> @Html.DisplayFor(model => model.LiPrezzo) *@
@* </div> *@
@* @Html.HiddenFor(model => model.Azienda) *@
@* @Html.HiddenFor(model => model.AmCodice) *@
@* @Html.HiddenFor(model => model.LoCodice) *@
@* @Html.HiddenFor(model => model.LiCodLis) *@
@* @Html.HiddenFor(model => model.LiCodArt) *@
@* @Html.HiddenFor(model => model.LiDatAtt) *@
@* @Html.HiddenFor(model => model.LiQuanti) *@
@* @Html.HiddenFor(model => model.LiScont1) *@
@* @Html.HiddenFor(model => model.LiScont2) *@
@* @Html.HiddenFor(model => model.LiScont3) *@
@* @Html.HiddenFor(model => model.LiScont4) *@
@* @Html.HiddenFor(model => model.Gest_Matr) *@
@* @Html.HiddenFor(model => model.Gest_Lotti) *@
@* @Html.HiddenFor(model => model.Desc_sup) *@
@* <div> *@
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
@* </div> *@
@* </div> *@
@* </div> *@
@* </div> *@
@* </div> *@