Mineplex2018-withcommit/Website/LOC.Website.Web/Areas/Manage/Views/Skills/Delete.cshtml

29 lines
604 B
Plaintext

@model LOC.Core.Model.PvpServer.Skill
@{
ViewBag.Title = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<fieldset>
<legend>Skill</legend>
<div class="display-label">Name</div>
<div class="display-field">
@Html.DisplayFor(model => model.Name)
</div>
<div class="display-label">Level</div>
<div class="display-field">
@Html.DisplayFor(model => model.Level)
</div>
</fieldset>
@using (Html.BeginForm()) {
<p>
<input type="submit" value="Delete" /> |
@Html.ActionLink("Back to List", "Index")
</p>
}