44 lines
978 B
Plaintext
44 lines
978 B
Plaintext
|
@using Resources
|
||
|
|
||
|
@model Weee.Models.Paramemter.NonYearlyParameter
|
||
|
|
||
|
@{
|
||
|
ViewBag.Title = Resource.StaticLabelNonYearlyParameterMaintain;
|
||
|
Layout = "~/Areas/admin/Views/Shared/_AdminLayout.cshtml";
|
||
|
}
|
||
|
|
||
|
<h2>Delete</h2>
|
||
|
|
||
|
<h3>Are you sure you want to delete this?</h3>
|
||
|
<div>
|
||
|
<h4>NonYearlyParameter</h4>
|
||
|
<hr />
|
||
|
<dl class="dl-horizontal">
|
||
|
<dt>
|
||
|
@Html.DisplayNameFor(model => model.Type.DisplayName)
|
||
|
</dt>
|
||
|
|
||
|
<dd>
|
||
|
@Html.DisplayFor(model => model.Type.DisplayName)
|
||
|
</dd>
|
||
|
|
||
|
<dt>
|
||
|
@Html.DisplayNameFor(model => model.Value)
|
||
|
</dt>
|
||
|
|
||
|
<dd>
|
||
|
@Html.DisplayFor(model => model.Value)
|
||
|
</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>
|