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

100 lines
4.7 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>
<div id="dashboardGeneralPage" data-role="page" class="page type-interior dashboardHomePage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Server%20Settings">
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>
<div style="display: inline-block; width: 92%;">
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>
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
2014-04-08 22:12:17 -04:00
${ButtonSave}
2014-03-30 22:33:10 -04:00
</button>
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
2014-04-08 22:12:17 -04:00
${ButtonCancel}
2014-03-30 22:33:10 -04:00
</button>
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('.dashboardGeneralForm').off('submit', DashboardGeneralPage.onSubmit).on('submit', DashboardGeneralPage.onSubmit);
</script>
</div>
</body>
</html>