mirror of https://github.com/lidarr/Lidarr
64 lines
2.9 KiB
Plaintext
64 lines
2.9 KiB
Plaintext
@using NzbDrone.Web.Helpers
|
|
@model NzbDrone.Web.Models.NotificationSettingsModel
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<div class="notifier">
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcEnabled)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcEnabled)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.XbmcEnabled, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcNotifyOnGrab)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcNotifyOnGrab)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.XbmcNotifyOnGrab, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcNotifyOnDownload)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcNotifyOnDownload)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.XbmcNotifyOnDownload, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcUpdateLibrary)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcUpdateLibrary)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.XbmcUpdateLibrary, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcCleanLibrary)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcCleanLibrary)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.XbmcCleanLibrary, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcUpdateWhenPlaying)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcUpdateWhenPlaying)</span>
|
|
</label>
|
|
@Html.CheckBoxFor(m => m.XbmcUpdateWhenPlaying, new { @class = "inputClass checkClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcHosts)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcHosts)</span>
|
|
<span class="small">@Html.ValidationMessageFor(m => m.XbmcHosts)</span>
|
|
</label>
|
|
@Html.TextBoxFor(m => m.XbmcHosts, new { @class = "inputClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcUsername)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcUsername)</span>
|
|
</label>
|
|
@Html.TextBoxFor(m => m.XbmcUsername, new { @class = "inputClass" })
|
|
|
|
<label class="labelClass">@Html.LabelFor(m => m.XbmcPassword)
|
|
<span class="small">@Html.DescriptionFor(m => m.XbmcPassword)</span>
|
|
</label>
|
|
@Html.TextBoxFor(m => m.XbmcPassword, new { @class = "inputClass", type = "password" })
|
|
|
|
<label class="labelClass">Test Notification
|
|
<span class="small">Sends a test notification to your XBMC client(s)</span>
|
|
</label>
|
|
<input type="button" id="xbmc-test-notification" value="Test Notification" class="inputClass"/>
|
|
|
|
<label class="labelClass">Test JSON-API
|
|
<span class="small">Test that library updates will work</span>
|
|
</label>
|
|
<input type="button" id="xbmc-test-jsonapi" value="Test JSON-API" class="inputClass"/>
|
|
</div> |