@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" })
@{Html.RenderPartial("Sabnzbd", Model);}
@{Html.RenderPartial("Blackhole", Model);}
@{Html.RenderPartial("Pneumatic", Model);}
@{Html.RenderPartial("Nzbget", Model);}
}