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