2012-01-14 16:01:51 -08:00
|
|
|
@using NzbDrone.Web.Helpers
|
|
|
|
@model NzbDrone.Web.Models.MiscSettingsModel
|
2012-02-23 11:16:11 -08:00
|
|
|
@{ Layout = null; }
|
2012-03-06 11:25:57 -08:00
|
|
|
|
|
|
|
<div class="warningBox">
|
2012-08-29 20:07:36 -07:00
|
|
|
Enabling Backlog Searching can use lots of bandwidth and is not recommended for users with block Usenet accounts or bandwidth restrictions.
|
2012-03-06 11:25:57 -08:00
|
|
|
</div>
|
|
|
|
|
2012-01-14 16:01:51 -08:00
|
|
|
<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" })
|
|
|
|
|
2012-02-27 22:06:02 -08:00
|
|
|
<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" })
|
|
|
|
|
2012-08-06 22:32:07 -07:00
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.AllowedReleaseGroups)
|
|
|
|
<span class="small">@Html.DescriptionFor(m => m.AllowedReleaseGroups)</span>
|
|
|
|
</label>
|
|
|
|
@Html.TextBoxFor(m => m.AllowedReleaseGroups, new { @class = "inputClass" })
|
|
|
|
|
2012-02-23 11:16:11 -08:00
|
|
|
<div style="overflow: hidden; height: 50px;">
|
|
|
|
</div>
|
2012-01-14 16:01:51 -08:00
|
|
|
|
|
|
|
<button type="submit" class="save_button" disabled="disabled">
|
|
|
|
Save</button>
|
|
|
|
}
|
|
|
|
</div>
|