@model Projects.Models.ProjectTask
@{
ViewBag.Title = "Szczegóły zadania";
}
@ViewBag.Title
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)
@Html.ActionLink("Edytuj", "Edit", new { id = Model.id }) |
@Html.ActionLink("Powrót do listy", "Index")