2012-01-15 01:01:51 +01:00
|
|
|
@using NzbDrone.Web.Helpers
|
|
|
|
@model NzbDrone.Web.Models.MiscSettingsModel
|
2012-02-23 20:16:11 +01:00
|
|
|
@{ Layout = null; }
|
2012-01-15 01:01:51 +01: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-23 20:16:11 +01:00
|
|
|
<div style="overflow: hidden; height: 50px;">
|
|
|
|
</div>
|
2012-01-15 01:01:51 +01:00
|
|
|
|
|
|
|
<button type="submit" class="save_button" disabled="disabled">
|
|
|
|
Save</button>
|
|
|
|
}
|
|
|
|
</div>
|