jellyfin-web/dashboard-ui/dashboardgeneral.html

84 lines
4.1 KiB
HTML
Raw Normal View History

2016-03-27 20:37:33 -07:00
<div id="dashboardGeneralPage" data-role="page" class="page type-interior dashboardHomePage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Server%20Settings">
2014-03-30 19:33:10 -07:00
2016-03-15 22:33:31 -07:00
<div data-role="content">
<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
2016-03-15 22:33:31 -07:00
<div>
<paper-input type="text" id="txtServerName" label="${LabelFriendlyServerName}"></paper-input>
<div class="fieldDescription">${LabelFriendlyServerNameHelp}</div>
2014-07-10 21:27:46 -07:00
2016-03-15 22:33:31 -07:00
</div>
<br /><br />
<div>
<label for="selectLocalizationLanguage" class="selectLabel">${LabelPreferredDisplayLanguage}</label>
<select id="selectLocalizationLanguage" data-mini="true"></select>
<div class="fieldDescription">
<div>${LabelPreferredDisplayLanguageHelp}</div>
<div style="margin-top: .25em;">
<a href="http://emby.media/community/index.php?/topic/5727-join-our-translation-team/" target="_blank">${LabelReadHowYouCanContribute}</a>
2015-07-30 08:18:07 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>
<br /><br />
2014-07-10 21:27:46 -07:00
2016-03-27 20:37:33 -07:00
<div id="fldRunAtStartup" style="display: none;">
<paper-checkbox id="chkRunAtStartup">${LabelRunServerAtStartup}</paper-checkbox>
<div id="windowsStartupDescription" class="fieldDescription paperCheckboxFieldDescription" style="display: none;">
${LabelRunServerAtStartupHelp}
</div>
<br /><br />
</div>
<div>
<paper-checkbox id="chkUsageData">${OptionEnableAnonymousUsageReporting}</paper-checkbox>
<div class="fieldDescription paperCheckboxFieldDescription">
${OptionEnableAnonymousUsageReportingHelp}
<div style="margin-top:.5em;">
<a target="_blank" href="https://emby.media/privacy">${ButtonLearnMore}</a>
</div>
</div>
<br /><br />
</div>
2016-03-15 22:33:31 -07:00
<emby-collapsible title="${HeaderAdvanced}">
2014-07-10 21:27:46 -07:00
<br />
2014-03-30 19:33:10 -07:00
<ul data-role="listview" class="ulForm">
<li>
2016-03-15 22:33:31 -07:00
<paper-input type="text" id="txtCachePath" label="${LabelCachePath}" style="display:inline-block;width:85%;"></paper-input>
<paper-icon-button id="btnSelectCachePath" icon="search">${ButtonSelectDirectory}</paper-icon-button>
<div class="fieldDescription">${LabelCachePathHelp}</div>
2014-03-30 19:33:10 -07:00
</li>
2016-03-15 22:33:31 -07:00
</ul>
</emby-collapsible>
2014-03-30 19:33:10 -07:00
2016-03-15 22:33:31 -07:00
<emby-collapsible title="${HeaderBranding}">
<p>${HeaderBrandingHelp}</p>
<br />
<ul data-role="listview" class="ulForm">
<li>
<paper-input type="text" id="txtLoginDisclaimer" label="${LabelLoginDisclaimer}"></paper-input>
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
</li>
<li>
<paper-textarea id="txtCustomCss" label="${LabelCustomCss}" class="mono"></paper-textarea>
<div class="fieldDescription">${LabelCustomCssHelp}</div>
</li>
2014-03-30 19:33:10 -07:00
</ul>
2016-03-15 22:33:31 -07:00
</emby-collapsible>
<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>
</li>
</ul>
</form>
2014-03-30 19:33:10 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>