mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
136 lines
5.6 KiB
HTML
136 lines
5.6 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>${TitleMediaBrowser}</title>
|
|
</head>
|
|
<body>
|
|
<div id="displayPreferencesPage" data-role="page" class="page libraryPage userPreferencesPage" data-contextname="${HeaderPreferences}">
|
|
<div class="libraryViewNav">
|
|
<a href="#" class="ui-btn-active lnkDisplayPreferences">${TabDisplay}</a>
|
|
<a href="#" class="lnkLanguagePreferences">${TabPlayback}</a>
|
|
<a href="#" class="lnkMyProfile">${TabProfile}</a>
|
|
<a href="#" class="lnkWebClientPreferences">${TabWebClient}</a>
|
|
</div>
|
|
|
|
<br />
|
|
<form class="displayPreferencesForm userProfileSettingsForm" style="margin: 0 auto;">
|
|
|
|
<div class="detailSection">
|
|
<div class="detailSectionHeader">
|
|
${HeaderMyViews}
|
|
</div>
|
|
<div class="detailSectionContent">
|
|
<div>
|
|
<p>${LabelSelectFolderGroups}</p>
|
|
<div class="folderGroupList"></div>
|
|
<div class="fieldDescription">${LabelSelectFolderGroupsHelp}</div>
|
|
</div>
|
|
<br />
|
|
|
|
<div>
|
|
<div data-role="controlgroup">
|
|
<label for="chkDisplayCollectionView">${LabelDisplayCollectionsView}</label>
|
|
<input id="chkDisplayCollectionView" type="checkbox" />
|
|
</div>
|
|
<div class="fieldDescription">${LabelDisplayCollectionsViewHelp}</div>
|
|
</div>
|
|
|
|
<br />
|
|
<div data-role="controlgroup">
|
|
<label for="chkDisplayFolderView">${LabelDisplayFoldersView}</label>
|
|
<input id="chkDisplayFolderView" type="checkbox" />
|
|
</div>
|
|
|
|
<br />
|
|
<div data-role="collapsible">
|
|
<h2>${HeaderChannels}</h2>
|
|
<div>
|
|
<p>${LabelGroupChannelsIntoViews}</p>
|
|
<div class="channelGroupList"></div>
|
|
<div class="fieldDescription">${LabelGroupChannelsIntoViewsHelp}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="detailSection">
|
|
<div class="detailSectionHeader">
|
|
${HeaderViewOrder}
|
|
</div>
|
|
<div class="detailSectionContent">
|
|
<p>${LabelSelectUserViewOrder}</p>
|
|
<div class="viewOrderList">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="detailSection">
|
|
<div class="detailSectionHeader">
|
|
${HeaderLatestItems}
|
|
</div>
|
|
<div class="detailSectionContent">
|
|
<p>${LabelSelectLastestItemsFolders}</p>
|
|
<div class="latestItemsList">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="detailSection">
|
|
<div class="detailSectionHeader">
|
|
${HeaderOtherDisplaySettings}
|
|
</div>
|
|
<div class="detailSectionContent">
|
|
<br />
|
|
<div data-role="controlgroup">
|
|
<div>
|
|
<input type="checkbox" id="chkDisplayMissingEpisodes" />
|
|
<label for="chkDisplayMissingEpisodes">${LabelDisplayMissingEpisodesWithinSeasons}</label>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" id="chkDisplayUnairedEpisodes" />
|
|
<label for="chkDisplayUnairedEpisodes">${LabelUnairedMissingEpisodesWithinSeasons}</label>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<div>
|
|
<div data-role="controlgroup">
|
|
<input type="checkbox" id="chkDisplayTrailersWithinMovieSuggestions" />
|
|
<label for="chkDisplayTrailersWithinMovieSuggestions">${LabelDisplayTrailersWithinMovieSuggestions}</label>
|
|
</div>
|
|
<div class="fieldDescription">${LabelDisplayTrailersWithinMovieSuggestionsHelp}</div>
|
|
</div>
|
|
<br />
|
|
<div>
|
|
<div data-role="controlgroup">
|
|
<input type="checkbox" id="chkGroupMoviesIntoCollections" />
|
|
<label for="chkGroupMoviesIntoCollections">${LabelGroupMoviesIntoCollections}</label>
|
|
</div>
|
|
<div class="fieldDescription">${LabelGroupMoviesIntoCollectionsHelp}</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<button type="submit" data-theme="a" data-icon="check" data-mini="true">
|
|
${ButtonOk}
|
|
</button>
|
|
<button type="button" onclick="history.back();" data-icon="delete" data-mini="true">
|
|
${ButtonCancel}
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
<script type="text/javascript">
|
|
$('.displayPreferencesForm').off('submit', DisplayPreferencesPage.onSubmit).on('submit', DisplayPreferencesPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|