70 lines
1.4 KiB
Plaintext
70 lines
1.4 KiB
Plaintext
|
@using Resources
|
||
|
|
||
|
@model Weee.Models.LCA
|
||
|
|
||
|
@{
|
||
|
ViewBag.Title = Resource.StaticLabelLCAList;
|
||
|
Layout = "~/Areas/admin/Views/Shared/_AdminLayout.cshtml";
|
||
|
}
|
||
|
|
||
|
<h2>Delete</h2>
|
||
|
|
||
|
<h3>Are you sure you want to delete this?</h3>
|
||
|
<div>
|
||
|
<h4>LCA</h4>
|
||
|
<hr />
|
||
|
<dl class="dl-horizontal">
|
||
|
|
||
|
<dt>
|
||
|
@Html.DisplayNameFor(model => model.VerifyBy.Name)
|
||
|
</dt>
|
||
|
|
||
|
<dd>
|
||
|
@Html.DisplayFor(model => model.VerifyBy.Name)
|
||
|
</dd>
|
||
|
|
||
|
|
||
|
<dt>
|
||
|
@Html.DisplayNameFor(model => model.StartDate)
|
||
|
</dt>
|
||
|
|
||
|
<dd>
|
||
|
@Html.DisplayFor(model => model.StartDate)
|
||
|
</dd>
|
||
|
|
||
|
<dt>
|
||
|
@Html.DisplayNameFor(model => model.EndDate)
|
||
|
</dt>
|
||
|
|
||
|
<dd>
|
||
|
@Html.DisplayFor(model => model.EndDate)
|
||
|
</dd>
|
||
|
|
||
|
<dt>
|
||
|
@Html.DisplayNameFor(model => model.DeadLine)
|
||
|
</dt>
|
||
|
|
||
|
<dd>
|
||
|
@Html.DisplayFor(model => model.DeadLine)
|
||
|
</dd>
|
||
|
|
||
|
<dt>
|
||
|
@Html.DisplayNameFor(model => model.Status)
|
||
|
</dt>
|
||
|
|
||
|
<dd>
|
||
|
@Html.DisplayFor(model => model.Status)
|
||
|
</dd>
|
||
|
|
||
|
</dl>
|
||
|
|
||
|
@using (Html.BeginForm()) {
|
||
|
@Html.AntiForgeryToken()
|
||
|
@Html.HiddenFor(x => x.ID)
|
||
|
<div class="form-actions no-color">
|
||
|
<input type="submit" value="Delete" class="btn btn-default" /> |
|
||
|
@Html.ActionLink("Back to List", "Index")
|
||
|
</div>
|
||
|
}
|
||
|
</div>
|