Files
TournamentTracker/MVCUI/Views/People/Index.cshtml

46 lines
977 B
Plaintext

@model IEnumerable<TrackerLibrary.Models.PersonModel>
@{
ViewBag.Title = "Index";
}
<h2>View All People</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.FirstName)
</th>
<th>
@Html.DisplayNameFor(model => model.LastName)
</th>
<th>
@Html.DisplayNameFor(model => model.EmailAddress)
</th>
<th>
@Html.DisplayNameFor(model => model.CellPhoneNumber)
</th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.FirstName)
</td>
<td>
@Html.DisplayFor(modelItem => item.LastName)
</td>
<td>
@Html.DisplayFor(modelItem => item.EmailAddress)
</td>
<td>
@Html.DisplayFor(modelItem => item.CellPhoneNumber)
</td>
</tr>
}
</table>