@model IEnumerable @{ ViewData["Title"] = "LastReceivedEventsData"; Layout = "~/Areas/Admin/Views/Shared/_AdminLayout.cshtml"; }

LastReceivedEventsData

Create New

@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.Email) @Html.DisplayNameFor(model => model.EventType) @Html.DisplayNameFor(model => model.EventTime)
@Html.DisplayFor(modelItem => item.Email) @Html.DisplayFor(modelItem => item.EventType) @Html.DisplayFor(modelItem => item.EventTime) @Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) | @Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) | @Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })