@using NzbDrone.Core.Repository
-
+
+@section HeaderContent
+{
+
+}
+
@section TitleContent{
Add Series
}
@@ -26,52 +23,20 @@ Add Series
.LoadContentFrom("AddNew", "AddSeries")
.Render();
}
- @{ Html.Telerik().PanelBar()
- .Name("RootDirPanel")
- .HtmlAttributes(new { style = "margin: 0px;" })
- .ExpandMode(PanelBarExpandMode.Multiple)
- .Items(panelItem =>
- {
- panelItem.Add()
- .Text("Root Directories")
- .ImageUrl("~/Content/Images/VideoFolder.png")
- .Selected((bool)ViewData["ShowRootDirs"])
- .Expanded((bool)ViewData["ShowRootDirs"])
- .Content(@
-
-
-
- @foreach (var root in Model)
- {
- Html.RenderAction("GetRootDirView", root);
- }
-
-
-
-
-
- );
- }).Render();
- }
@Html.Telerik().DropDownList().Name("masterDropbox").BindTo((SelectList)ViewData["qualities"]).HtmlAttributes(
new { style = "width: 100px; margin-left:224px;" }).ClientEvents(events => events.OnChange("masterChanged"))
+
+ @{Html.RenderAction("RootDir");}
@{ Html.RenderAction("AddExisting", "AddSeries"); }
}
+
@section Scripts
{
-}
-@{Html.RenderAction("RootDir");}