jellyfin-web/dashboard-ui/advanced.html

76 lines
3.9 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
<head>
2014-04-05 08:02:50 -07:00
<title>${TitleAdvanced}</title>
2013-02-20 18:33:05 -07:00
</head>
<body>
<div id="advancedConfigurationPage" data-role="page" class="page type-interior advancedConfigurationPage">
2013-02-20 18:33:05 -07:00
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-03 15:50:04 -07:00
<a href="#" data-role="button" class="ui-btn-active">${TabGeneral}</a>
2014-04-05 08:02:50 -07:00
<a href="advancedpaths.html" data-role="button">${TabPaths}</a>
<a href="advancedserversettings.html" data-role="button">${TabServer}</a>
<a href="encodingsettings.html" data-role="button">${TabTranscoding}</a>
</div>
2013-02-20 18:33:05 -07:00
<form id="advancedConfigurationForm">
<ul data-role="listview" class="ulForm">
<li id="fldRunAtStartup" style="display: none;">
2013-12-14 18:17:57 -07:00
<input type="checkbox" id="chkRunAtStartup" name="chkRunAtStartup" data-mini="true" />
2014-04-05 08:02:50 -07:00
<label for="chkRunAtStartup">${LabelRunServerAtStartup}</label>
<div id="windowsStartupDescription" class="fieldDescription warningFieldDescription" style="display: none;">
2014-04-05 08:02:50 -07:00
${LabelRunServerAtStartupHelp}
</div>
2013-02-20 18:33:05 -07:00
</li>
2014-01-11 13:13:18 -07:00
<li>
<input type="checkbox" id="chkDebugLog" name="chkDebugLog" data-mini="true" />
2014-04-05 08:02:50 -07:00
<label for="chkDebugLog">${LabelEnableDebugLogging}</label>
2014-01-11 13:13:18 -07:00
</li>
</ul>
<h2>Updates</h2>
<ul data-role="listview" class="ulForm">
<li>
2014-04-05 08:02:50 -07:00
<label for="selectAutomaticUpdateLevel">${LabelAutomaticUpdateLevel}</label>
2013-12-14 18:17:57 -07:00
<select name="selectAutomaticUpdateLevel" id="selectAutomaticUpdateLevel" data-mini="true">
2014-04-05 08:02:50 -07:00
<option value="Release">${OptionRelease}</option>
<option value="Beta">${OptionBeta}</option>
<option value="Dev">${OptionDev}</option>
</select>
<div id="devBuildWarning" class="fieldDescription warningFieldDescription" style="display: none;">
2014-04-02 14:55:19 -07:00
${DevBuildWarning}
</div>
</li>
2014-01-11 13:13:18 -07:00
<li id="fldEnableAutomaticRestart" style="display: none;">
<input type="checkbox" id="chkEnableAutomaticRestart" name="chkEnableAutomaticRestart" data-mini="true" />
2014-04-05 08:02:50 -07:00
<label for="chkEnableAutomaticRestart">${LabelAllowServerAutoRestart}</label>
2014-01-11 13:13:18 -07:00
<div class="fieldDescription">
2014-04-05 08:02:50 -07:00
${LabelAllowServerAutoRestartHelp}
2014-01-11 13:13:18 -07:00
</div>
2013-12-25 20:55:59 -07:00
</li>
2013-12-14 18:17:57 -07:00
</ul>
2014-03-25 14:13:55 -07:00
<br />
2013-12-14 18:17:57 -07:00
<ul data-role="listview" class="ulForm">
2013-02-20 18:33:05 -07:00
<li>
2013-12-24 11:37:29 -07:00
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
2014-04-05 08:02:50 -07:00
${ButtonSave}
2013-02-20 18:33:05 -07:00
</button>
2013-12-14 18:17:57 -07:00
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
2014-04-05 08:02:50 -07:00
${ButtonCancel}
2013-02-20 18:33:05 -07:00
</button>
</li>
2013-12-25 20:55:59 -07:00
2013-02-20 18:33:05 -07:00
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('#advancedConfigurationForm').on('submit', AdvancedConfigurationPage.onSubmit);
</script>
</div>
</body>
</html>