81 lines
1.8 KiB
Plaintext
81 lines
1.8 KiB
Plaintext
@model StockManMVC.Models.Item
|
|
|
|
<div>
|
|
<dl class="">
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.ItemFamily.Descr)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.ItemFamily.Descr)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Descr)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Descr)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CodInt)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CodInt)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CodExt)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CodExt)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.DescrExt)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.DescrExt)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.QtaMin)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.QtaMin)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.QtaBatch)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.QtaBatch)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CurrValue)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CurrValue)
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
</div>
|
|
|
|
@*<div class="form-group no-color row">
|
|
<div class="col-sm-6">
|
|
<a href="@Url.Action("Edit", "Items", new { id=Model.ID })" class="btn btn-default form-control">Modifica <i class="glyphicon glyphicon-edit"></i></a>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<a href="@Url.Action("Index", "Items", new { id=Model.ID })" class="btn btn-info form-control">Torna ad elenco <i class="glyphicon glyphicon-retweet"></i></a>
|
|
</div>
|
|
</div>*@
|