You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/NzbDrone.Web/Views/Settings/Misc.cshtml

19 lines
743 B

@using NzbDrone.Web.Helpers
@model NzbDrone.Web.Models.MiscSettingsModel
@{ Layout = null; }
<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" })
<div style="overflow: hidden; height: 50px;">
</div>
<button type="submit" class="save_button" disabled="disabled">
Save</button>
}
</div>