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.
33 lines
1.4 KiB
33 lines
1.4 KiB
@using NzbDrone.Web.Helpers
|
|
@model NzbDrone.Web.Models.NotificationSettingsModel
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<div class="notifier">
|
|
<label class="labelClass">@Html.LabelFor(m => m.ProwlEnabled)
|
|
<span class="small">@Html.DescriptionFor(m => m.ProwlEnabled)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.ProwlEnabled, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.ProwlNotifyOnGrab)
|
|
<span class="small">@Html.DescriptionFor(m => m.ProwlNotifyOnGrab)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.ProwlNotifyOnGrab, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.ProwlNotifyOnDownload)
|
|
<span class="small">@Html.DescriptionFor(m => m.ProwlNotifyOnDownload)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.ProwlNotifyOnDownload, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.ProwlApiKeys)
|
|
<span class="small">@Html.DescriptionFor(m => m.ProwlApiKeys)</span>
|
|
</label>
|
|
@Html.TextBoxFor(m => m.ProwlApiKeys, new { @class = "inputClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.ProwlPriority)
|
|
<span class="small">@Html.DescriptionFor(m => m.ProwlPriority)</span>
|
|
</label>
|
|
@Html.DropDownListFor(m => m.ProwlPriority, Model.ProwlPrioritySelectList, new { @class = "inputClass selectClass" })
|
|
</div> |