@using UniversityContracts.ViewModels @model List @{ ViewData["Title"] = "Manage Students"; }

@ViewData["Title"]

Name:
Plan Of Study:
Phone number:
@foreach (var student in Model) { }
Id Name Plan of study Phone number Actions
@Html.DisplayFor(modelItem => student.Id) @Html.DisplayFor(modelItem => student.Name) @Html.DisplayFor(modelItem => student.PlanOfStudyId) @Html.DisplayFor(modelItem => student.PhoneNumber) Изменить