mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
104 lines
6.0 KiB
HTML
104 lines
6.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleAdvanced}</title>
|
|
</head>
|
|
<body>
|
|
<div id="advancedConfigurationPage" data-role="page" class="page type-interior advancedConfigurationPage" data-require="scripts/advancedconfigurationpage">
|
|
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
<a href="#" data-role="button" class="ui-btn-active">${TabGeneral}</a>
|
|
<a href="dashboardhosting.html" data-role="button">${TabHosting}</a>
|
|
</div>
|
|
<form class="advancedConfigurationForm">
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
<li id="fldRunAtStartup" style="display: none;">
|
|
<input type="checkbox" id="chkRunAtStartup" name="chkRunAtStartup" data-mini="true" />
|
|
<label for="chkRunAtStartup">${LabelRunServerAtStartup}</label>
|
|
<div id="windowsStartupDescription" class="fieldDescription warningFieldDescription" style="display: none;">
|
|
${LabelRunServerAtStartupHelp}
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="chkDebugLog" name="chkDebugLog" data-mini="true" />
|
|
<label for="chkDebugLog">${LabelEnableDebugLogging}</label>
|
|
</li>
|
|
</ul>
|
|
|
|
<div data-role="collapsible">
|
|
<h2>${HeaderAutomaticUpdates}</h2>
|
|
<div>
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li class="fldAutomaticUpdates">
|
|
<div data-role="controlgroup">
|
|
<input type="checkbox" id="chkEnableAutomaticServerUpdates" data-mini="true" />
|
|
<label for="chkEnableAutomaticServerUpdates">${OptionEnableAutomaticServerUpdates}</label>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<label class="lnlAutomaticUpdateLevel" for="selectAutomaticUpdateLevel"></label>
|
|
<select name="selectAutomaticUpdateLevel" id="selectAutomaticUpdateLevel">
|
|
<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;">
|
|
${DevBuildWarning}
|
|
</div>
|
|
</li>
|
|
<li id="fldEnableAutomaticRestart" style="display: none;">
|
|
<input type="checkbox" id="chkEnableAutomaticRestart" name="chkEnableAutomaticRestart" data-mini="true" />
|
|
<label for="chkEnableAutomaticRestart">${LabelAllowServerAutoRestart}</label>
|
|
<div class="fieldDescription">
|
|
${LabelAllowServerAutoRestartHelp}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div data-role="collapsible">
|
|
<h2>${HeaderDeveloperOptions}</h2>
|
|
<div>
|
|
<br />
|
|
<div data-role="controlgroup">
|
|
<input type="checkbox" id="chkEnableDashboardResponseCache" data-mini="true" />
|
|
<label for="chkEnableDashboardResponseCache">${OptionEnableWebClientResponseCache}</label>
|
|
<input type="checkbox" id="chkEnableMinification" data-mini="true" />
|
|
<label for="chkEnableMinification">${OptionEnableWebClientResourceMinification}</label>
|
|
</div>
|
|
<div class="fieldDescription">
|
|
${OptionDisableForDevelopmentHelp}
|
|
</div>
|
|
<br /><br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<paper-input type="text" id="txtDashboardSourcePath" label="${LabelDashboardSourcePath}" style="display: inline-block; width: 80%;"></paper-input>
|
|
<paper-icon-button id="btnSelectDashboardSourcePath" icon="search" title="${ButtonSelectDirectory}"></paper-icon-button>
|
|
<div class="fieldDescription">${LabelDashboardSourcePathHelp}</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<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>
|
|
|
|
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
|
|
</li>
|
|
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|