58 lines
1.2 KiB
Plaintext
58 lines
1.2 KiB
Plaintext
@model Weee.Models.Paramemter.YearlyParameter
|
|
|
|
@{
|
|
ViewBag.Title = "Delete";
|
|
Layout = "~/Areas/admin/Views/Shared/_AdminLayout.cshtml";
|
|
}
|
|
|
|
<h2>Delete</h2>
|
|
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
<div>
|
|
<h4>YearlyParameter</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Area.DisplayName)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Area.DisplayName)
|
|
</dd>
|
|
|
|
<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>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Year)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Year)
|
|
</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>
|