jellyfin-web/src/notificationsetting.html

68 lines
2.8 KiB
HTML
Raw Normal View History

2019-04-02 16:12:02 -07:00
<div id="notificationSettingPage" data-role="page" class="page type-interior notificationConfigurationPage withTabs">
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-03-15 22:33:31 -07:00
<form class="notificationSettingForm">
2014-04-26 20:42:05 -07:00
2018-09-12 10:26:21 -07:00
<div class="verticalSection">
<div class="sectionTitleContainer flex align-items-center">
<h2 class="notificationType sectionTitle"></h2>
2019-04-22 09:29:06 -07:00
<a is="emby-linkbutton" class="raised button-alt headerHelpButton" target="_blank" href="https://jellyfin.readthedocs.io/en/latest/server/notifications/">${Help}</a>
2018-09-12 10:26:21 -07:00
</div>
</div>
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>
2016-08-21 11:33:17 -07:00
<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>