fixed show grid, added details page

This commit is contained in:
kay.one 2010-09-24 00:14:42 -07:00
parent 772452aa8b
commit 4d4a8198eb
15 changed files with 153 additions and 117 deletions

View file

@ -35,9 +35,9 @@ namespace NzbDrone.Web.Controllers
//
// GET: /Series/Details/5
public ActionResult Details(int id)
public ActionResult Details(int tvdbId)
{
return View();
return View(_seriesController.GetSeries(tvdbId));
}
//