@using NzbDrone.Web.Helpers @model NzbDrone.Web.Models.MiscSettingsModel @{ Layout = null; }
Enabling Backlog Searching can use lots of bandwidth and is not recommended for Users with block Usenet accounts or bandwidth restrictions.
@using (Html.BeginForm("SaveMisc", "Settings", FormMethod.Post, new { id = "MiscForm", name = "MiscForm", @class = "settingsForm" })) { @Html.CheckBoxFor(m => m.EnableBacklogSearching, new { @class = "inputClass checkClass" }) @Html.CheckBoxFor(m => m.AutoIgnorePreviouslyDownloadedEpisodes, new { @class = "inputClass checkClass" })
}