mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-17 00:13:15 +01:00
f50494ea9b
New: Added warning to Settings -> Misc regarding backlog searching.
29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
@using NzbDrone.Web.Helpers
|
|
@model NzbDrone.Web.Models.MiscSettingsModel
|
|
@{ Layout = null; }
|
|
|
|
<div class="warningBox">
|
|
Enabling Backlog searching will use lots of bandwidth, not recommended when using block accounts or you have bandwidth restrictions
|
|
</div>
|
|
|
|
<div id="stylized">
|
|
@using (Html.BeginForm("SaveMisc", "Settings", FormMethod.Post, new { id = "MiscForm", name = "MiscForm", @class = "settingsForm" }))
|
|
{
|
|
<label class="labelClass">@Html.LabelFor(m => m.EnableBacklogSearching)
|
|
<span class="small">@Html.DescriptionFor(m => m.EnableBacklogSearching)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.EnableBacklogSearching, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.AutoIgnorePreviouslyDownloadedEpisodes)
|
|
<span class="small">@Html.DescriptionFor(m => m.AutoIgnorePreviouslyDownloadedEpisodes)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.AutoIgnorePreviouslyDownloadedEpisodes, new { @class = "inputClass checkClass" })
|
|
|
|
<div style="overflow: hidden; height: 50px;">
|
|
</div>
|
|
|
|
<button type="submit" class="save_button" disabled="disabled">
|
|
Save</button>
|
|
}
|
|
</div>
|