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/mypreferencesdisplay.html

155 lines
6.4 KiB
HTML
Raw Normal View History

2014-05-21 12:45:42 -04:00
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
2015-03-21 14:12:12 -04:00
<title>Emby</title>
2014-05-21 12:45:42 -04:00
</head>
<body>
2015-01-18 00:45:10 -05:00
<div id="displayPreferencesPage" data-role="page" class="page libraryPage userPreferencesPage" data-contextname="${HeaderPreferences}">
2014-05-21 12:45:42 -04:00
<div class="libraryViewNav">
<a href="#" class="ui-btn-active lnkDisplayPreferences">${TabDisplay}</a>
2014-09-22 17:56:54 -04:00
<a href="#" class="lnkLanguagePreferences">${TabPlayback}</a>
2014-10-15 23:26:39 -04:00
<a href="#" class="lnkMyProfile">${TabProfile}</a>
2015-05-07 10:04:10 -04:00
<a href="#" class="lnkWebClientPreferences">${TabAppSettings}</a>
2014-05-21 12:45:42 -04:00
</div>
<br />
2015-01-22 13:05:32 -05:00
<form class="displayPreferencesForm userProfileSettingsForm" style="margin: 0 auto;">
2014-06-04 22:32:40 -04:00
2015-01-22 13:05:32 -05:00
<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 />
2015-04-15 17:59:20 -04:00
2015-01-23 23:50:45 -05:00
<div>
<div data-role="controlgroup">
<label for="chkDisplayCollectionView">${LabelDisplayCollectionsView}</label>
<input id="chkDisplayCollectionView" type="checkbox" />
</div>
<div class="fieldDescription">${LabelDisplayCollectionsViewHelp}</div>
</div>
2015-04-15 17:59:20 -04:00
2015-01-23 23:50:45 -05:00
<br />
2015-01-22 13:05:32 -05:00
<div data-role="controlgroup">
<label for="chkDisplayFolderView">${LabelDisplayFoldersView}</label>
<input id="chkDisplayFolderView" type="checkbox" />
</div>
2014-06-04 22:32:40 -04:00
2015-01-22 13:05:32 -05:00
<br />
<div data-role="collapsible">
<h2>${HeaderChannels}</h2>
<div>
<p>${LabelGroupChannelsIntoViews}</p>
<div class="channelGroupList"></div>
<div class="fieldDescription">${LabelGroupChannelsIntoViewsHelp}</div>
</div>
</div>
2014-10-31 00:57:24 -04:00
</div>
</div>
2015-04-15 17:59:20 -04:00
<div class="detailSection viewStylesSection" style="display:none;">
<div class="detailSectionHeader">
${HeaderViewStyles}
</div>
<div class="detailSectionContent">
<p>${LabelSelectViewStyles}</p>
<div class="viewStylesList">
</div>
<div class="fieldDescription">${LabelSelectViewStylesHelp}</div>
</div>
</div>
2015-01-22 13:05:32 -05:00
<div class="detailSection">
<div class="detailSectionHeader">
${HeaderViewOrder}
2014-10-31 00:57:24 -04:00
</div>
2015-01-22 13:05:32 -05:00
<div class="detailSectionContent">
<p>${LabelSelectUserViewOrder}</p>
<div class="viewOrderList">
2015-01-22 13:05:32 -05:00
</div>
</div>
2014-08-18 21:42:53 -04:00
</div>
2015-01-22 13:05:32 -05:00
<div class="detailSection">
<div class="detailSectionHeader">
${HeaderLatestItems}
2014-08-18 21:42:53 -04:00
</div>
2015-01-22 13:05:32 -05:00
<div class="detailSectionContent">
<p>${LabelSelectLastestItemsFolders}</p>
<div class="latestItemsList">
</div>
2015-03-31 12:24:16 -04:00
<br />
<div data-role="controlgroup">
<label for="chkHidePlayedFromLatest">${OptionHideWatchedContentFromLatestMedia}</label>
<input id="chkHidePlayedFromLatest" type="checkbox" />
</div>
2015-01-22 13:05:32 -05:00
</div>
2014-08-18 21:42:53 -04:00
</div>
2015-01-22 13:05:32 -05:00
<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>
2014-08-18 21:42:53 -04:00
2014-06-04 22:32:40 -04:00
</div>
2014-05-21 12:45:42 -04:00
<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>