mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
68 lines
2.9 KiB
HTML
68 lines
2.9 KiB
HTML
<div id="notificationSettingPage" data-role="page" class="page type-interior notificationConfigurationPage withTabs" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Notifications" data-require="scripts/notificationsetting,emby-select,emby-input,paper-checkbox,emby-button">
|
|
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
|
|
<h1 class="notificationType" style="margin-top:0;"></h1>
|
|
|
|
<form class="notificationSettingForm">
|
|
|
|
<br />
|
|
<div>
|
|
<paper-checkbox id="chkEnabled">${LabelNotificationEnabled}</paper-checkbox>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
|
|
<div class="monitorUsers" style="display: none;">
|
|
<div class="paperListLabel">${LabelMonitorUsers}</div>
|
|
<div class="monitorUsersList">
|
|
</div>
|
|
<br />
|
|
<br />
|
|
</div>
|
|
|
|
<div>
|
|
<div class="selectContainer">
|
|
<select is="emby-select" id="selectUsers" label="${LabelSendNotificationToUsers}">
|
|
<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 />
|
|
</div>
|
|
|
|
<div>
|
|
<label>${LabelUseNotificationServices}</label>
|
|
<div class="servicesList">
|
|
</div>
|
|
<div class="fieldDescription">${AdditionalNotificationServices}</div>
|
|
<br />
|
|
</div>
|
|
|
|
<br />
|
|
<div class="inputContainer">
|
|
<input is="emby-input" id="txtTitle" type="text" required label="${LabelMessageTitle}"/>
|
|
<div class="fieldDescription tokenHelp">
|
|
<div>${LabelAvailableTokens}</div>
|
|
<div class="tokenList" style="margin-top: .5em;"></div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<br />
|
|
<button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
|
|
|
|
<button is="emby-button" type="button" class="raised cancel block btnCancel" onclick="history.back();"><i class="md-icon">close</i><span>${ButtonCancel}</span></button>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div> |