@using NzbDrone.Web.Helpers @model NzbDrone.Web.Models.SystemSettingsModel @{ Layout = "_SettingsLayout.cshtml"; }
You must manually restart NzbDrone for these changes to take effect. (Automatic restart coming soon!)
@using (Html.BeginForm("SaveSystem", "Settings", FormMethod.Post, new { id = "SystemForm", name = "SystemForm", @class = "settingsForm" })) { @Html.ValidationSummary(true, "Unable to save your settings. Please correct the errors and try again.") @Html.CheckBoxFor(m => m.LaunchBrowser, new { @class = "inputClass checkClass" }) @Html.TextBoxFor(m => m.Port, new { @class = "inputClass" }) @Html.DropDownListFor(m => m.AuthenticationType, Model.AuthTypeSelectList, new { @class = "inputClass" }) @Html.TextBoxFor(m => m.RecycleBin, new { @class = "inputClass folderLookup" }) }
@section Scripts { }