@model IEnumerable @using PagedList.Mvc @using PagedList @using Resources @{ Layout = Layout = "~/Views/Shared/_Layout.cshtml"; ; ViewBag.Title = Resource.StaticLabelDownloadFile; } @section PageStyles { @Styles.Render("~/bootstrap/css") @Styles.Render("~/publicFiles/css") } @section PageScripts { @Scripts.Render("~/jQuery") @Scripts.Render("~/bootstrap") }

@Resource.StaticLabelDownloadFile


@foreach (var file in Model) { }
@Resource.StaticLabelFileName @Resource.UpdateTime @Resource.DownloadLink
@file.DisplayName @file.UpdatedTime.ToShortDateString() @Resource.StaticLabelDownload
@if (((IPagedList)Model).PageCount > 1) {
@Html.PagedListPager((IPagedList)Model, page => Url.Action("PublicFiles", new { page }))
}