2014-04-26 20:42:05 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>${TitleAdvanced}</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="notificationSettingPage" data-role="page" class="page type-interior advancedConfigurationPage">
|
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
|
|
|
|
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
|
|
|
<a href="advanced.html" data-role="button">${TabGeneral}</a>
|
|
|
|
|
<a href="notificationsettings.html" data-role="button" class="ui-btn-active">${TabNotifications}</a>
|
2014-07-21 18:29:06 -07:00
|
|
|
|
<a href="scheduledtasks.html" data-role="button">${TabScheduledTasks}</a>
|
2014-04-26 20:42:05 -07:00
|
|
|
|
<a href="encodingsettings.html" data-role="button">${TabTranscoding}</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<h2 class="notificationType" style="margin-bottom: 0;"></h2>
|
|
|
|
|
|
|
|
|
|
<form class="notificationSettingForm">
|
|
|
|
|
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
|
|
|
|
<input type="checkbox" id="chkEnabled" data-mini="true" />
|
|
|
|
|
<label for="chkEnabled">${LabelNotificationEnabled}</label>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<div class="monitorUsers" style="display: none;">
|
|
|
|
|
<label>${LabelMonitorUsers}</label>
|
|
|
|
|
<div class="monitorUsersList">
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
2014-04-27 10:54:43 -07:00
|
|
|
|
<div>
|
|
|
|
|
<label for="selectUsers">${LabelSendNotificationToUsers}</label>
|
|
|
|
|
<select id="selectUsers" data-mini="true">
|
|
|
|
|
<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>
|
2014-04-26 20:42:05 -07:00
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<label>${LabelUseNotificationServices}</label>
|
|
|
|
|
<div class="servicesList">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="fieldDescription">${AdditionalNotificationServices}</div>
|
|
|
|
|
<br />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
|
|
|
|
<label for="txtTitle">${LabelMessageTitle}</label>
|
2014-04-27 10:54:43 -07:00
|
|
|
|
<input id="txtTitle" type="text" data-mini="true" required="required" />
|
2014-04-26 20:42:05 -07:00
|
|
|
|
<div class="fieldDescription tokenHelp">
|
|
|
|
|
<div>${LabelAvailableTokens}</div>
|
|
|
|
|
<div class="tokenList" style="margin-top: .5em;"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<br />
|
|
|
|
|
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
|
|
|
|
${ButtonSave}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" onclick="Dashboard.navigate('notificationsettings.html');" data-icon="delete" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('.notificationSettingForm').off('submit', NotificationSettingPage.onSubmit).on('submit', NotificationSettingPage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|