mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
74105974dd
New: Added test button to Prowl.
39 lines
1.7 KiB
Plaintext
39 lines
1.7 KiB
Plaintext
@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>
|
|
<span class="small">@Html.ValidationMessageFor(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" })
|
|
|
|
<label class="labelClass">Test Prowl
|
|
<span class="small">Test Prowl by sending a message to your client(s)</span>
|
|
</label>
|
|
<input type="button" onclick="testProwl();" value="Test" class="inputClass" />
|
|
</div> |