b83dff00a1
da collegare x navigazione...
59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
@model StockManMVC.Models.ItemStock
|
|
|
|
@{
|
|
ViewBag.Title = "Details";
|
|
}
|
|
|
|
<h2>Details</h2>
|
|
|
|
<div>
|
|
<h4>ItemStock</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.QtyConf)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.QtyConf)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Note)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Note)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.dtLastUpd)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.dtLastUpd)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Item.Descr)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Item.Descr)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Location.Descr)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Location.Descr)
|
|
</dd>
|
|
|
|
</dl>
|
|
</div>
|
|
<p>
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.ID }) |
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</p>
|