RAZOR'd Series and the Error page.

NzbDrone has been RAZORfied completely now, die ASPX pages!
This commit is contained in:
Mark McDowall
2011-04-21 00:14:47 -07:00
parent 13af6663fe
commit 33b67a138c
13 changed files with 237 additions and 262 deletions
+17
View File
@@ -0,0 +1,17 @@
@using NzbDrone.Web.Controllers
@{Html.Telerik().Menu().Name("telerikGrid").Items(items =>
{
items.Add().Text("Add Series")
.Items(
subItem =>
subItem.Add().Text("New Series").Action<AddSeriesController>(c => c.AddNew()))
.Items(
subItem =>
subItem.Add().Text("Existing Series").Action<AddSeriesController>(c => c.AddExisting()));
items.Add().Text("Start RSS Sync").Action<SeriesController>(
c => c.RssSync());
items.Add().Text("Rename All").Action<SeriesController>(
c => c.RenameAll());
}).Render();}