@model Projects.Models.ProjectTask @{ ViewBag.Title = "Usunięcie zadania"; }

@ViewBag.Title

Czy na pewno chcesz to usunąć?

Zadanie


@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("Powrót do listy", "Index")
}