05791423bd
Refresh tab e metodi in genere...
89 lines
1.8 KiB
Plaintext
89 lines
1.8 KiB
Plaintext
@model StockManMVC.Models.Item
|
|
|
|
@{
|
|
ViewBag.Title = "Delete";
|
|
}
|
|
|
|
<h2>Delete</h2>
|
|
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
<div>
|
|
<h4>Item</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<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>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.ItemFamily.Descr)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.ItemFamily.Descr)
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
@using (Html.BeginForm()) {
|
|
@Html.AntiForgeryToken()
|
|
|
|
<div class="form-actions no-color">
|
|
<input type="submit" value="Delete" class="btn btn-default" /> |
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</div>
|
|
}
|
|
</div>
|