1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/dashboardgeneral.html

93 lines
4.6 KiB
HTML
Raw Normal View History

2014-03-30 22:33:10 -04:00
<!DOCTYPE html>
<html>
<head>
2014-07-11 00:27:46 -04:00
<title>${TitleServer}</title>
2014-03-30 22:33:10 -04:00
</head>
<body>
2015-06-08 17:32:20 -04:00
<div id="dashboardGeneralPage" data-role="page" class="page type-interior dashboardHomePage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Server%20Settings" data-require="scripts/dashboardgeneral">
2014-03-30 22:33:10 -04:00
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-07-11 00:27:46 -04:00
<a href="dashboard.html" data-role="button">${TabDashboard}</a>
2014-07-20 00:46:29 -04:00
<a href="#" data-role="button" class="ui-btn-active">${TabSettings}</a>
2014-03-30 22:33:10 -04:00
</div>
<form class="dashboardGeneralForm">
<ul data-role="listview" class="ulForm">
<li>
2014-04-08 22:12:17 -04:00
<label for="txtServerName">${LabelFriendlyServerName}</label>
2015-01-02 00:36:27 -05:00
<input id="txtServerName" />
2014-04-08 22:12:17 -04:00
<div class="fieldDescription">${LabelFriendlyServerNameHelp}</div>
2014-03-30 22:33:10 -04:00
</li>
<li>
2014-04-08 22:12:17 -04:00
<label for="selectLocalizationLanguage">${LabelPreferredDisplayLanguage}</label>
2014-07-20 00:46:29 -04:00
<select id="selectLocalizationLanguage" data-mini="true"></select>
2014-04-08 22:12:17 -04:00
<div class="fieldDescription">
<div>${LabelPreferredDisplayLanguageHelp}</div>
2014-04-27 00:35:04 -04:00
<div style="margin-top: .25em;">
2015-03-21 14:12:12 -04:00
<a href="http://emby.media/community/index.php?/topic/5727-join-our-translation-team/" target="_blank">${LabelReadHowYouCanContribute}</a>
2014-04-08 22:12:17 -04:00
</div>
</div>
2014-03-30 22:33:10 -04:00
</li>
</ul>
2014-07-11 00:27:46 -04:00
2014-07-20 00:46:29 -04:00
<div data-role="collapsible">
<h2>${HeaderAdvanced}</h2>
<div>
<br />
<ul data-role="listview" class="ulForm">
<li>
<label for="txtCachePath">${LabelCachePath}</label>
2015-06-10 09:37:07 -04:00
<div style="display: inline-block; width: 85%;">
2015-01-02 00:36:27 -05:00
<input type="text" id="txtCachePath" name="txtCachePath" />
2014-07-20 00:46:29 -04:00
</div>
<button id="btnSelectCachePath" type="button" data-icon="search" data-iconpos="notext" data-inline="true">${ButtonSelectDirectory}</button>
<div class="fieldDescription">${LabelCachePathHelp}</div>
</li>
</ul>
</div>
</div>
2014-07-11 00:27:46 -04:00
<div data-role="collapsible">
<h2>${HeaderBranding}</h2>
<div>
<p>${HeaderBrandingHelp}</p>
<br />
<ul data-role="listview" class="ulForm">
<li>
<label for="txtLoginDisclaimer">${LabelLoginDisclaimer}</label>
2015-01-02 00:36:27 -05:00
<input id="txtLoginDisclaimer" type="text" />
2014-07-11 00:27:46 -04:00
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
</li>
2015-01-19 00:41:56 -05:00
<li>
<label for="txtCustomCss">${LabelCustomCss}</label>
2015-02-18 00:01:13 -05:00
<textarea id="txtCustomCss" style="font-family:monospace;height:200px!important;overflow-y:auto;"></textarea>
2015-01-19 00:41:56 -05:00
<div class="fieldDescription">${LabelCustomCssHelp}</div>
</li>
2014-07-11 00:27:46 -04:00
</ul>
</div>
</div>
<br />
2014-03-30 22:33:10 -04:00
<ul data-role="listview" class="ulForm">
<li>
2015-06-25 21:10:56 -04:00
<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>
2014-03-30 22:33:10 -04:00
</button>
2015-06-25 21:10:56 -04:00
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
2014-03-30 22:33:10 -04:00
</li>
</ul>
</form>
</div>
</div>
</div>
</body>
</html>