1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

39 lines
1.7 KiB
Plaintext
Raw Normal View History

2011-11-02 19:44:22 -07:00
@using NzbDrone.Web.Helpers
@model NzbDrone.Web.Models.NotificationSettingsModel
@{
Layout = null;
}
2011-11-26 12:34:28 -08:00
<div class="notifier">
2011-11-02 19:44:22 -07:00
<label class="labelClass">@Html.LabelFor(m => m.ProwlEnabled)
2012-02-25 13:21:41 -08:00
<span class="small">@Html.DescriptionFor(m => m.ProwlEnabled)</span>
2011-11-02 19:44:22 -07:00
</label>
@Html.CheckBoxFor(m => m.ProwlEnabled, new { @class = "inputClass checkClass" })
<label class="labelClass">@Html.LabelFor(m => m.ProwlNotifyOnGrab)
2012-02-25 13:21:41 -08:00
<span class="small">@Html.DescriptionFor(m => m.ProwlNotifyOnGrab)</span>
2011-11-02 19:44:22 -07:00
</label>
@Html.CheckBoxFor(m => m.ProwlNotifyOnGrab, new { @class = "inputClass checkClass" })
<label class="labelClass">@Html.LabelFor(m => m.ProwlNotifyOnDownload)
2012-02-25 13:21:41 -08:00
<span class="small">@Html.DescriptionFor(m => m.ProwlNotifyOnDownload)</span>
2011-11-02 19:44:22 -07:00
</label>
@Html.CheckBoxFor(m => m.ProwlNotifyOnDownload, new { @class = "inputClass checkClass" })
<label class="labelClass">@Html.LabelFor(m => m.ProwlApiKeys)
2012-02-25 13:21:41 -08:00
<span class="small">@Html.DescriptionFor(m => m.ProwlApiKeys)</span>
<span class="small">@Html.ValidationMessageFor(m => m.ProwlApiKeys)</span>
2011-11-02 19:44:22 -07:00
</label>
@Html.TextBoxFor(m => m.ProwlApiKeys, new { @class = "inputClass" })
<label class="labelClass">@Html.LabelFor(m => m.ProwlPriority)
2012-02-25 13:21:41 -08:00
<span class="small">@Html.DescriptionFor(m => m.ProwlPriority)</span>
2011-11-02 19:44:22 -07:00
</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" />
2011-11-02 19:44:22 -07:00
</div>