mirror of https://github.com/Radarr/Radarr
27 lines
1009 B
Plaintext
27 lines
1009 B
Plaintext
|
@using NzbDrone.Web.Helpers
|
||
|
|
||
|
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
|
||
|
|
||
|
@section HeaderContent
|
||
|
{
|
||
|
@Html.IncludeCss("Settings.css")
|
||
|
@Html.IncludeCss("IndexerSettings.css")
|
||
|
@Html.IncludeCss("QualitySettings.css")
|
||
|
}
|
||
|
|
||
|
<ul class="settings-navigation">
|
||
|
@MvcHtmlString.Create(Html.CurrentActionLink("Naming", "Naming", "Settings"))
|
||
|
@MvcHtmlString.Create(Html.CurrentActionLink("Quality", "Quality", "Settings"))
|
||
|
@MvcHtmlString.Create(Html.CurrentActionLink("Indexers", "Indexers", "Settings"))
|
||
|
@MvcHtmlString.Create(Html.CurrentActionLink("Download Client", "DownloadClient", "Settings"))
|
||
|
@MvcHtmlString.Create(Html.CurrentActionLink("Notifications", "Notifications", "Settings"))
|
||
|
@MvcHtmlString.Create(Html.CurrentActionLink("System", "System", "Settings"))
|
||
|
@MvcHtmlString.Create(Html.CurrentActionLink("Misc", "Misc", "Settings"))
|
||
|
</ul>
|
||
|
|
||
|
@RenderBody()
|
||
|
|
||
|
@section Scripts{
|
||
|
@Html.IncludeScript("NzbDrone/settings.js")
|
||
|
@RenderSection("Scripts", required: false)
|
||
|
}
|