2012-01-15 00:01:51 +00:00
|
|
|
@using NzbDrone.Web.Helpers
|
|
|
|
@model NzbDrone.Web.Models.MiscSettingsModel
|
2012-10-15 00:50:01 +00:00
|
|
|
|
|
|
|
@{
|
|
|
|
Layout = "_SettingsLayout.cshtml";
|
|
|
|
}
|
2012-03-06 19:25:57 +00:00
|
|
|
|
|
|
|
<div class="warningBox">
|
2012-08-30 03:07:36 +00: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 19:25:57 +00:00
|
|
|
</div>
|
|
|
|
|
2012-01-15 00:01:51 +00: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-28 06:06:02 +00: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-07 05:32:07 +00: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 19:16:11 +00:00
|
|
|
<div style="overflow: hidden; height: 50px;">
|
|
|
|
</div>
|
2012-01-15 00:01:51 +00:00
|
|
|
|
|
|
|
<button type="submit" class="save_button" disabled="disabled">
|
|
|
|
Save</button>
|
|
|
|
}
|
|
|
|
</div>
|