mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
89 lines
3.9 KiB
HTML
89 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleNotifications}</title>
|
|
</head>
|
|
<body>
|
|
<div id="notificationSettingPage" data-role="page" class="page type-interior notificationConfigurationPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Notifications" data-require="scripts/notificationsetting,paper-input,jqmcheckbox">
|
|
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
<a href="notificationsettings.html" data-role="button" class="ui-btn-active">${TabNotifications}</a>
|
|
<a href="appservices.html?context=notifications" data-role="button">${TabServices}</a>
|
|
</div>
|
|
|
|
<h2 class="notificationType" style="margin-bottom: 0;"></h2>
|
|
|
|
<form class="notificationSettingForm">
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<input type="checkbox" id="chkEnabled" data-mini="true" />
|
|
<label for="chkEnabled">${LabelNotificationEnabled}</label>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="monitorUsers" style="display: none;">
|
|
<label>${LabelMonitorUsers}</label>
|
|
<div class="monitorUsersList">
|
|
</div>
|
|
<br />
|
|
<br />
|
|
</div>
|
|
|
|
<div>
|
|
<div>
|
|
<label for="selectUsers" class="selectLabel">${LabelSendNotificationToUsers}</label>
|
|
<select id="selectUsers">
|
|
<option value="All">${OptionAllUsers}</option>
|
|
<option value="Admins">${OptionAdminUsers}</option>
|
|
<option value="Custom">${OptionCustomUsers}</option>
|
|
</select>
|
|
</div>
|
|
<div class="selectCustomUsers" style="display: none;">
|
|
<br />
|
|
<label>${LabelSelectUsers}</label>
|
|
<div class="sendToUsersList">
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
</div>
|
|
|
|
<div>
|
|
<label>${LabelUseNotificationServices}</label>
|
|
<div class="servicesList">
|
|
</div>
|
|
<div class="fieldDescription">${AdditionalNotificationServices}</div>
|
|
<br />
|
|
</div>
|
|
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<paper-input id="txtTitle" type="text" required label="${LabelMessageTitle}"></paper-input>
|
|
<div class="fieldDescription tokenHelp">
|
|
<div>${LabelAvailableTokens}</div>
|
|
<div class="tokenList" style="margin-top: .5em;"></div>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<br />
|
|
<button type="submit" data-role="none" class="clearButton">
|
|
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
|
|
</button>
|
|
|
|
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
|
|
</li>
|
|
|
|
</ul>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|