@model EnVisage.Models.PeopleResourceModel @{ ViewBag.Title = "Delete People Resource"; } @section Scripts { }
Warning

You are about to delete the resource @Model.FirstName @Model.LastName, this action cannot be undone. Are you sure you want to delete it?

@using (Html.BeginForm("Delete", "PeopleResource", new { teamId = Request.QueryString["teamId"] })) {
@Html.CheckBoxFor(model => model.ChangeCapacity)
@Html.HiddenFor(t => t.Id) @Html.AntiForgeryToken() Back to list }