jellyfin-web/dashboard-ui/dashboardgeneral.html

108 lines
5.8 KiB
HTML
Raw Normal View History

2018-09-12 10:26:21 -07:00
<div id="dashboardGeneralPage" data-role="page" class="page type-interior dashboardHomePage">
2014-03-30 19:33:10 -07:00
2017-05-06 12:42:17 -07:00
<div>
2016-03-15 22:33:31 -07:00
<div class="content-primary">
2014-03-30 19:33:10 -07:00
2016-03-15 22:33:31 -07:00
<form class="dashboardGeneralForm">
2014-03-30 19:33:10 -07:00
2018-09-12 10:26:21 -07:00
<div class="verticalSection">
<div class="sectionTitleContainer flex align-items-center">
<h2 class="sectionTitle">${TabSettings}</h2>
<a is="emby-linkbutton" class="raised button-alt headerHelpButton" target="_blank" href="https://github.com/MediaBrowser/Wiki/wiki/Server%20Settings">${Help}</a>
</div>
</div>
<div class="verticalSection">
<div class="selectContainer">
<select is="emby-select" id="selectLocalizationLanguage" label="${LabelPreferredDisplayLanguage}"></select>
<div class="fieldDescription">
<div>${LabelPreferredDisplayLanguageHelp}</div>
<div style="margin-top: .25em;">
<a is="emby-linkbutton" class="button-link" href="http://emby.media/community/index.php?/topic/5727-join-our-translation-team/" target="_blank">${LabelReadHowYouCanContribute}</a>
</div>
2015-07-30 08:18:07 -07:00
</div>
</div>
2014-07-10 21:27:46 -07:00
<div id="fldRunAtStartup" class="checkboxContainer checkboxContainer-withDescription hide">
<label>
<input is="emby-checkbox" type="checkbox" id="chkRunAtStartup" />
<span>${LabelRunServerAtStartup}</span>
</label>
<div id="windowsStartupDescription" class="fieldDescription checkboxFieldDescription hide">
${LabelRunServerAtStartupHelp}
</div>
2016-03-27 20:37:33 -07:00
</div>
<div id="fldRunWebAppAtStartup" class="checkboxContainer checkboxContainer-withDescription hide">
<label>
<input is="emby-checkbox" type="checkbox" id="chkRunWebAppAtStartup" />
<span>${LaunchWebAppOnStartup}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">
${LaunchWebAppOnStartupHelp}
</div>
</div>
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input is="emby-checkbox" type="checkbox" id="chkUsageData" />
<span>${OptionEnableAnonymousUsageReporting}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">
${OptionEnableAnonymousUsageReportingHelp}
<div style="margin-top:.5em;">
<a is="emby-linkbutton" class="button-link" target="_blank" href="https://emby.media/privacy">${ButtonLearnMore}</a>
</div>
2016-03-27 20:37:33 -07:00
</div>
</div>
</div>
<div class="verticalSection verticalSection-extrabottompadding">
<h2>${Advanced}</h2>
<div class="inputContainer">
<div style="display: flex; align-items: center;">
<div style="flex-grow:1;">
<input is="emby-input" id="txtCachePath" label="${LabelCachePath}" autocomplete="off" />
2016-08-21 11:33:17 -07:00
</div>
<button type="button" is="paper-icon-button-light" id="btnSelectCachePath" title="${ButtonSelectDirectory}" class="emby-input-iconbutton"><i class="md-icon">search</i></button>
2016-08-20 12:58:57 -07:00
</div>
<div class="fieldDescription">${LabelCachePathHelp}</div>
2016-07-11 09:56:16 -07:00
</div>
</div>
2016-03-28 22:16:44 -07:00
<div class="verticalSection autoUpdatesContainer hide">
<h2>${HeaderAutomaticUpdates}</h2>
<label class="fldAutomaticUpdates checkboxContainer">
<input is="emby-checkbox" type="checkbox" id="chkEnableAutomaticServerUpdates" />
<span>${OptionEnableAutomaticServerUpdates}</span>
</label>
2017-12-05 11:33:44 -07:00
<div id="fldEnableAutomaticRestart" class="checkboxContainer checkboxContainer-withDescription hide">
<label>
<input is="emby-checkbox" type="checkbox" id="chkEnableAutomaticRestart" />
<span>${LabelAllowServerAutoRestart}</span>
2016-08-26 12:29:28 -07:00
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelAllowServerAutoRestartHelp}</div>
2016-07-11 09:56:16 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
2018-09-12 10:26:21 -07:00
<div class="verticalSection">
<div class="inputContainer">
<input is="emby-input" type="text" id="txtLoginDisclaimer" label="${LabelLoginDisclaimer}" />
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
</div>
<div class="inputContainer">
<textarea is="emby-textarea" id="txtCustomCss" label="${LabelCustomCss}" class="textarea-mono"></textarea>
<div class="fieldDescription">${LabelCustomCssHelp}</div>
2016-03-28 22:16:44 -07:00
</div>
2016-07-11 09:56:16 -07:00
</div>
2016-03-15 22:33:31 -07:00
<br />
2016-08-20 12:58:57 -07:00
<div>
2016-09-13 10:49:13 -07:00
<button is="emby-button" type="submit" class="raised button-submit block">
<span>${ButtonSave}</span>
</button>
2016-08-20 12:58:57 -07:00
</div>
2016-03-15 22:33:31 -07:00
</form>
2014-03-30 19:33:10 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>