commit
3c09533976
@ -1,24 +1,21 @@
|
|||||||
@using NzbDrone.Core.Repository
|
@section TitleContent{
|
||||||
@section TitleContent{
|
|
||||||
Add Series
|
Add Series
|
||||||
}
|
}
|
||||||
@section Scripts
|
@section Scripts
|
||||||
{
|
{
|
||||||
<script type="text/javascript" src="../../Scripts/NzbDrone/addSeries.js"></script>
|
<script type="text/javascript" src="../../Scripts/NzbDrone/addSeries.js"></script>
|
||||||
}
|
}
|
||||||
@section MainContent{
|
<h2>
|
||||||
<h2>
|
|
||||||
Add New Series</h2>
|
Add New Series</h2>
|
||||||
<div id="addNewSeries">
|
<div id="addNewSeries">
|
||||||
@{ Html.RenderAction("AddNew", "AddSeries"); }
|
@{ Html.RenderAction("AddNew", "AddSeries"); }
|
||||||
</div>
|
</div>
|
||||||
<h2>
|
<h2>
|
||||||
Add Series Already on Disk</h2>
|
Add Series Already on Disk</h2>
|
||||||
<h3>
|
<h3>
|
||||||
Manage Root Folders
|
Manage Root Folders
|
||||||
</h3>
|
</h3>
|
||||||
@{Html.RenderAction("RootDir");}
|
@{Html.RenderAction("RootDir");}
|
||||||
<div id="existingSeries">
|
<div id="existingSeries">
|
||||||
@{ Html.RenderAction("ExistingSeries", "AddSeries"); }
|
@{ Html.RenderAction("ExistingSeries", "AddSeries"); }
|
||||||
</div>
|
</div>
|
||||||
}
|
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
@section TitleContent
|
||||||
|
{
|
||||||
|
Settings
|
||||||
|
}
|
||||||
|
@section Scripts
|
||||||
|
{
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function () {
|
||||||
|
$("#tabs222").tabs();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
}
|
||||||
|
@section MainContent{
|
||||||
|
<div id="tabs222">
|
||||||
|
<ul>
|
||||||
|
<li>@Html.ActionLink("Naming", "Naming", "Settings")</li>
|
||||||
|
<li>@Html.ActionLink("Indexers", "Indexers", "Settings")</li>
|
||||||
|
<li>@Html.ActionLink("Quality", "Quality", "Settings")</li>
|
||||||
|
<li>@Html.ActionLink("SABnzbd", "Sabnzbd", "Settings")</li>
|
||||||
|
<li>@Html.ActionLink("Notifications", "Notifications", "Settings")</li>
|
||||||
|
<li>@Html.ActionLink("System", "System", "Settings")</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
@using Telerik.Web.Mvc.UI
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head runat="server">
|
||||||
|
<link rel="SHORTCUT ICON" href="../../favicon.ico" />
|
||||||
|
<title>NzbDrone</title>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/2011.3.1115/telerik.common.min.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/2011.3.1115/telerik.sitefinity.min.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/jQueryUI/jquery-ui-1.8.16.custom.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/jquery.gritter.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/NzbDrone.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/ActionButton.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/overrides.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/Menu.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../../Content/Messages.css" />
|
||||||
|
@RenderSection("HeaderContent", required: false)
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
@RenderBody()
|
||||||
|
@(Html.Telerik().ScriptRegistrar().jQuery(true))
|
||||||
|
<script type="text/javascript" src="../../Scripts/jquery-ui-1.8.16.min.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/MicrosoftAjax.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/MicrosoftMvcAjax.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/jquery.gritter.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/jquery.form.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/jquery-tgc-countdown-1.0.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/jquery.watermark.min.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/jquery.hotkeys.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/doTimeout.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/NzbDrone/episodeSearch.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/NzbDrone/AutoComplete.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/NzbDrone/LocalSearch.js"></script>
|
||||||
|
<script type="text/javascript" src="../../Scripts/NzbDrone/Notification.js"></script>
|
||||||
|
@RenderSection("Scripts", required: false)
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue