@model Projects.Models.ProjectTask @{ ViewBag.Title = "Delete"; }

Delete

Are you sure you want to delete this?

ProjectTask


@Html.DisplayNameFor(model => model.name)
@Html.DisplayFor(model => model.name)
@Html.DisplayNameFor(model => model.description)
@Html.DisplayFor(model => model.description)
@Html.DisplayNameFor(model => model.created_at)
@Html.DisplayFor(model => model.created_at)
@Html.DisplayNameFor(model => model.updated_at)
@Html.DisplayFor(model => model.updated_at)
@Html.DisplayNameFor(model => model.Project.name)
@Html.DisplayFor(model => model.Project.name)
@Html.DisplayNameFor(model => model.TaskStatus.status)
@Html.DisplayFor(model => model.TaskStatus.status)
@Html.DisplayNameFor(model => model.User.login)
@Html.DisplayFor(model => model.User.login)
@using (Html.BeginForm()) { @Html.AntiForgeryToken()
| @Html.ActionLink("Back to List", "Index")
}