jellyfin-web/dashboard-ui/notificationsetting.html

72 lines
3.0 KiB
HTML
Raw Normal View History

2016-09-09 19:41:29 -07:00
<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,emby-checkbox,emby-button">
2014-04-26 20:42:05 -07:00
2017-05-06 12:42:17 -07:00
<div>
2016-03-15 22:33:31 -07:00
<div class="content-primary">
2014-04-26 20:42:05 -07:00
2016-04-14 19:58:51 -07:00
<h1 class="notificationType" style="margin-top:0;"></h1>
2014-04-26 20:42:05 -07:00
2016-03-15 22:33:31 -07:00
<form class="notificationSettingForm">
2014-04-26 20:42:05 -07:00
2016-08-21 11:33:17 -07:00
<br />
2016-09-09 19:41:29 -07:00
<label class="checkboxContainer">
<input type="checkbox" is="emby-checkbox" id="chkEnabled" />
<span>${LabelNotificationEnabled}</span>
</label>
2016-08-21 11:33:17 -07:00
<br />
2014-04-26 20:42:05 -07:00
2016-03-15 22:33:31 -07:00
<div class="monitorUsers" style="display: none;">
2016-04-15 22:27:10 -07:00
<div class="paperListLabel">${LabelMonitorUsers}</div>
2016-03-15 22:33:31 -07:00
<div class="monitorUsersList">
2014-04-26 20:42:05 -07:00
</div>
2016-03-15 22:33:31 -07:00
<br />
<br />
</div>
2014-04-26 20:42:05 -07:00
2016-03-15 22:33:31 -07:00
<div>
2016-08-21 11:33:17 -07:00
<div class="selectContainer">
<select is="emby-select" id="selectUsers" label="${LabelSendNotificationToUsers}">
2016-03-15 22:33:31 -07:00
<option value="All">${OptionAllUsers}</option>
<option value="Admins">${OptionAdminUsers}</option>
<option value="Custom">${OptionCustomUsers}</option>
</select>
2014-04-26 20:42:05 -07:00
</div>
2016-03-15 22:33:31 -07:00
<div class="selectCustomUsers" style="display: none;">
2014-04-26 20:42:05 -07:00
<br />
2016-03-15 22:33:31 -07:00
<label>${LabelSelectUsers}</label>
<div class="sendToUsersList">
</div>
2014-04-26 20:42:05 -07:00
</div>
2016-03-15 22:33:31 -07:00
<br />
</div>
2014-04-26 20:42:05 -07:00
2016-03-15 22:33:31 -07:00
<div>
<label>${LabelUseNotificationServices}</label>
<div class="servicesList">
</div>
<div class="fieldDescription">${AdditionalNotificationServices}</div>
2014-04-26 20:42:05 -07:00
<br />
2016-03-15 22:33:31 -07:00
</div>
<br />
2016-08-21 11:33:17 -07:00
<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 />
2016-09-12 11:10:09 -07:00
<button is="emby-button" type="submit" class="raised button-submit block">
<span>${ButtonSave}</span>
</button>
2014-04-26 20:42:05 -07:00
2016-09-12 11:10:09 -07:00
<button is="emby-button" type="button" class="raised button-cancel block btnCancel" onclick="history.back();">
<span>${ButtonCancel}</span>
</button>
2016-08-21 11:33:17 -07:00
</div>
2016-03-15 22:33:31 -07:00
</form>
2014-04-26 20:42:05 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>