More grid work. Row partial views are now sent a bool set to true if it is an alternate row.

This commit is contained in:
Mark McDowall 2012-02-06 19:48:26 -08:00
parent 93355a4ae1
commit 854d66c1f5
7 changed files with 31 additions and 24 deletions

View file

@ -38,7 +38,7 @@ namespace NzbDrone.Web.Controllers
public ActionResult Index()
{
var series = GetSeriesModels(_seriesProvider.GetAllSeriesWithEpisodeCount()).OrderBy(o => SortHelper.SkipArticles(o.Title));
var series = GetSeriesModels(_seriesProvider.GetAllSeriesWithEpisodeCount()).OrderBy(o => SortHelper.SkipArticles(o.Title)).ToList();
return View(series);
}