Added images for provider, shown on the History grid.

This commit is contained in:
Mark McDowall 2011-04-27 21:27:02 -07:00
parent 7e946277bb
commit b146b62ef3
10 changed files with 12 additions and 6 deletions

View file

@ -1,5 +1,6 @@
using System.Linq;
using System.Web.Mvc;
using NzbDrone.Core.Model;
using NzbDrone.Core.Providers;
using NzbDrone.Web.Models;
using Telerik.Web.Mvc;
@ -53,11 +54,10 @@ namespace NzbDrone.Web.Controllers
NzbTitle = h.NzbTitle,
Quality = h.Quality.ToString(),
IsProper = h.IsProper,
Date = h.Date
Date = h.Date,
Indexer = h.Indexer.ToString()
});
history.ToList();
return View(new GridModel(history));
}
}