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.
38 lines
1.7 KiB
38 lines
1.7 KiB
@using NzbDrone.Web.Helpers
|
|
@model NzbDrone.Web.Models.SystemSettingsModel
|
|
@{ Layout = null; }
|
|
|
|
|
|
<div class="infoBox">
|
|
You must manually restart NzbDrone for these changes to take effect. (Automatic restart comming soon!)
|
|
</div>
|
|
|
|
<div id="stylized">
|
|
@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.")
|
|
<label class="labelClass">@Html.LabelFor(m => m.LaunchBrowser)
|
|
<span class="small">@Html.DescriptionFor(m => m.LaunchBrowser)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.LaunchBrowser, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.Port)
|
|
<span class="small">@Html.DescriptionFor(m => m.Port)</span>
|
|
</label>
|
|
@Html.TextBoxFor(m => m.Port, new { @class = "inputClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.AuthenticationType)
|
|
<span class="small">@Html.DescriptionFor(m => m.AuthenticationType)</span>
|
|
</label>
|
|
@Html.DropDownListFor(m => m.AuthenticationType, Model.AuthTypeSelectList, new { @class = "inputClass" })
|
|
|
|
<label class="labelClass"> Backup Configuration
|
|
<span class="small">Backup your Configuration file and Database</span>
|
|
</label>
|
|
<input type="button" value="Backup Now" onclick="window.location='../System/Backup'; return false;" class="inputClass" />
|
|
|
|
<button type="submit" class="save_button" disabled="disabled">
|
|
Save</button>
|
|
}
|
|
</div>
|