@model PagedList @{ var countryFilter = ViewData[Constants.ViewDataKeys.PeopleCountryFilter] as string ?? string.Empty; var countryOptions = ViewData[Constants.ViewDataKeys.PeopleCountryOptions] as IEnumerable ?? Enumerable.Empty(); }

People list

@(Model.PagingInfo.IsFiltered ? $"{Model.PagingInfo.FilteredItemsCount} / {Model.PagingInfo.TotalItemsCount}" : Model.PagingInfo.TotalItemsCount.ToString())
@if (Model.PagingInfo.IsFiltered) { Clear }
Page @Model.PagingInfo.CurrentPage of @Model.PagingInfo.TotalPages