mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
14 lines
497 B
Plaintext
14 lines
497 B
Plaintext
@using NzbDrone.Web.Helpers;
|
|
@model NzbDrone.Web.Models.DownloadClientSettingsModel
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<div class="downloadClient">
|
|
<label class="labelClass">@Html.LabelFor(m => m.BlackholeDirectory)
|
|
<span class="small">@Html.DescriptionFor(m => m.BlackholeDirectory)</span>
|
|
<span class="small">@Html.ValidationMessageFor(m => m.BlackholeDirectory)</span>
|
|
</label>
|
|
@Html.TextBoxFor(m => m.BlackholeDirectory, new { @class = "inputClass folderLookup" })
|
|
</div> |