@using PagedList.Mvc @using PagedList @using Resources @model IEnumerable @{ ViewBag.Title = "Index"; Layout = "~/Areas/Admin/Views/Shared/_AdminLayout.cshtml"; }

@Resource.SystemLog

@using (Html.BeginForm("Index", "Log", FormMethod.Get, new { id = "search-filter", @class = "form-horizontal" })) {
@Html.ActionLink(Resource.StaticLabelGlobal_Cancel, "index", new { }, new { @class = "btn btn-default" })
}

@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.Name) @Html.DisplayNameFor(model => model.Controller) @Html.DisplayNameFor(model => model.Action) @Html.DisplayNameFor(model => model.IP) @Html.DisplayNameFor(model => model.ActionTime) @Html.DisplayNameFor(model => model.ExecuteResult)
@item.Name @item.Controller @item.Action @item.IP @item.ActionTime @item.ExecuteResult
@Html.PagedListPager((IPagedList)ViewBag.OnePage, page => Url.Action("Index", new { page, searchString = ViewBag.SearchString }))