@using NzbDrone.Web.Helpers; @model NzbDrone.Web.Models.DownloadClientSettingsModel @{ Layout = "_SettingsLayout.cshtml"; }
@using (Html.BeginForm("SaveDownloadClient", "Settings", FormMethod.Post, new { id = "DownloadClientForm", name = "DownloadClientForm", @class = "settingsForm" })) {
@Html.DropDownListFor(m => m.DownloadClient, Model.DownloadClientSelectList, new { @class = "inputClass selectClass" }) @Html.TextBoxFor(m => m.DownloadClientDropDirectory, new { @class = "inputClass folderLookup" }) @Html.CheckBoxFor(m => m.UseSceneName, new { @class = "inputClass checkClass" })

Sabnzbd

@{Html.RenderPartial("Sabnzbd", Model);}

Blackhole

@{Html.RenderPartial("Blackhole", Model);}

Pneumatic

@{Html.RenderPartial("Pneumatic", Model);}

Nzbget

@{Html.RenderPartial("Nzbget", Model);}
}
@section Scripts{ }