@model IEnumerable @{ ViewBag.Title = "Results"; var grid = new WebGrid(Model, rowsPerPage: 45); }

Result Status

@grid.GetHtml(columns: grid.Columns( grid.Column("LeafInputIdentifier", "Identifier"), grid.Column("LeafInputSiteId", "Site Id"), grid.Column("LeafInputName", "Submitted By"), grid.Column("CurrentStatus", "Status"), grid.Column("Chart", "Chart", item => item.HasLeafChart ? Html.ActionLink("Chart", "Index", "LeafCharter", new {leafInputId = item.LeafInputId}, new {}) : Html.Raw("")) ), htmlAttributes: new { @class = "table table-striped table-bordered table-hover table-condensed" } )