121 lines
5.2 KiB
Plaintext
121 lines
5.2 KiB
Plaintext
@using X.PagedList.Mvc.Core
|
|
@using X.PagedList.Web.Common
|
|
@using X.PagedList
|
|
@model VirtualTask.Models.CommesseVT_Table
|
|
|
|
<link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" />
|
|
|
|
@{
|
|
ViewData["Title"] = "Dettaglio commessa";
|
|
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"> </th>
|
|
<th scope="col"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="fw-bold fs-5">
|
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.laserial)</span>
|
|
</td>
|
|
<td>@Html.DisplayFor(model => model.laserial)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="fw-bold fs-5">
|
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacodcom)</span>
|
|
</td>
|
|
<td>@Html.DisplayFor(model => model.lacodcom)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="fw-bold fs-5">
|
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ladeslav)</span>
|
|
</td>
|
|
<td>@Html.DisplayFor(model => model.ladeslav)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="fw-bold fs-5">
|
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacodcli)</span>
|
|
</td>
|
|
<td>@Html.DisplayFor(model => model.lacodcli)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="fw-bold fs-5">
|
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacodimp)</span>
|
|
</td>
|
|
<td>@Html.DisplayFor(model => model.lacodimp)</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="fw-bold fs-5">
|
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacomgen)</span>
|
|
</td>
|
|
<td>@Html.DisplayFor(model => model.lacomgen)</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
@Html.HiddenFor(model => model.lacodazi)
|
|
@Html.HiddenFor(model => model.ladatchi)
|
|
@Html.HiddenFor(model => model.latipcli)
|
|
|
|
<div>
|
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@* @using X.PagedList.Mvc.Core; *@
|
|
@* @using X.PagedList.Web.Common; *@
|
|
@* @using X.PagedList; *@
|
|
@* @model VirtualTask.Models.CommesseVT_Table *@
|
|
|
|
@* <link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" /> *@
|
|
@* @{ *@
|
|
@* ViewData["Title"] = "Dettaglio commessa"; *@
|
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
|
@* } *@
|
|
|
|
|
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
|
@* <div class="container"> *@
|
|
@* <div class="row"> *@
|
|
@* <div class="row"> *@
|
|
@* <div class="col-md-4"> *@
|
|
@* <div class="col-md-10"> *@
|
|
@* <b>@Html.DisplayNameFor(model => model.laserial)</b> @Html.DisplayFor(model => model.laserial) *@
|
|
@* </div> *@
|
|
@* @Html.HiddenFor(model => model.lacodazi) *@
|
|
@* <div class="col-md-10"> *@
|
|
@* <b>@Html.DisplayNameFor(model => model.lacodcom)</b> @Html.DisplayFor(model => model.lacodcom) *@
|
|
@* </div> *@
|
|
@* <div class="col-md-10"> *@
|
|
@* <b>@Html.DisplayNameFor(model => model.ladeslav)</b> @Html.DisplayFor(model => model.ladeslav) *@
|
|
@* </div> *@
|
|
@* @Html.HiddenFor(model => model.ladatchi) *@
|
|
@* @Html.HiddenFor(model => model.latipcli) *@
|
|
@* <div class="col-md-10"> *@
|
|
@* <b>@Html.DisplayNameFor(model => model.lacodcli)</b> @Html.DisplayFor(model => model.lacodcli) *@
|
|
@* </div> *@
|
|
@* <div class="col-md-10"> *@
|
|
@* <b>@Html.DisplayNameFor(model => model.lacodimp)</b> @Html.DisplayFor(model => model.lacodimp) *@
|
|
@* </div> *@
|
|
@* <div class="col-md-10"> *@
|
|
@* <b>@Html.DisplayNameFor(model => model.lacomgen)</b> @Html.DisplayFor(model => model.lacomgen) *@
|
|
@* </div> *@
|
|
|
|
@* <div> *@
|
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
|
@* </div> *@
|
|
@* </div> *@
|
|
@* </div> *@
|
|
@* </div> *@
|
|
@* </div> *@
|
|
@* </div> *@ |