jellyfin-web/dashboard-ui/notificationsetting.html

72 lines
3.1 KiB
HTML
Raw Normal View History

2016-07-05 22:13:26 -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="jqmlistview,scripts/notificationsetting,paper-input,paper-checkbox,emby-button">
2014-04-26 20:42:05 -07:00
2016-03-15 22:33:31 -07:00
<div data-role="content">
<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-03-15 22:33:31 -07:00
<ul data-role="listview" class="ulForm">
<li>
2016-04-14 19:58:51 -07:00
<paper-checkbox id="chkEnabled">${LabelNotificationEnabled}</paper-checkbox>
2016-03-15 22:33:31 -07:00
</li>
</ul>
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>
2014-04-26 20:42:05 -07:00
<div>
2016-03-15 22:33:31 -07:00
<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>
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 />
<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 />
<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 />
2016-07-23 11:43:07 -07:00
<button is="emby-button" type="submit" class="raised submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
2015-06-25 18:10:56 -07:00
2016-07-23 11:43:07 -07:00
<button is="emby-button" type="button" class="raised cancel block btnCancel" onclick="history.back();"><i class="md-icon">close</i><span>${ButtonCancel}</span></button>
2016-03-15 22:33:31 -07:00
</li>
2014-04-26 20:42:05 -07:00
2016-03-15 22:33:31 -07:00
</ul>
</form>
2014-04-26 20:42:05 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>