b83dff00a1
da collegare x navigazione...
65 lines
1.3 KiB
Plaintext
65 lines
1.3 KiB
Plaintext
@model StockManMVC.Models.ItemStock
|
|
|
|
@{
|
|
ViewBag.Title = "Delete";
|
|
}
|
|
|
|
<h2>Delete</h2>
|
|
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
<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>
|
|
|
|
@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>
|