46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
@model VirtualTask.Models.Chiusure
|
|
|
|
@{
|
|
ViewData["Title"] = "Delete";
|
|
}
|
|
|
|
<h1>Delete</h1>
|
|
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
<div>
|
|
<h4>Chiusure</h4>
|
|
<hr />
|
|
<dl class="row">
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.cccodazi)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.cccodazi)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.cccodice)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.cccodice)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.ccdescr)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.ccdescr)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.ccdessup)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.ccdessup)
|
|
</dd>
|
|
</dl>
|
|
|
|
<form asp-action="DeleteConfirmed">
|
|
<input type="submit" value="Delete" class="btn btn-danger" /> |
|
|
<input type="hidden" id="id" value=@Html.DisplayFor(model => model.cccodice) name="id" />
|
|
<a asp-action="Index">Back to List</a>
|
|
</form>
|
|
</div>
|