jellyfin-web/dashboard-ui/notificationsetting.html

74 lines
3.2 KiB
HTML
Raw Normal View History

2016-04-14 19:58:51 -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,paper-input,paper-checkbox">
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-14 19:58:51 -07:00
<div class="paperCheckboxListLabel">${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 />
<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>
2015-06-25 18:10:56 -07:00
2016-03-15 22:33:31 -07:00
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
</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>