mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
71 lines
3.3 KiB
HTML
71 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>Emby</title>
|
|
</head>
|
|
<body>
|
|
<div id="displayPreferencesPage" data-role="page" class="page libraryPage userPreferencesPage noSecondaryNavPage" data-title="${HeaderDisplaySettings}" data-require="scripts/mypreferencesdisplay,paper-checkbox" data-backbutton="true" data-menubutton="false">
|
|
|
|
<div data-role="content">
|
|
<form class="displayPreferencesForm userProfileSettingsForm" style="margin: 0 auto;">
|
|
|
|
<div class="detailSection">
|
|
<h1>
|
|
${HeaderNavigation}
|
|
</h1>
|
|
|
|
<div class="detailSectionContent">
|
|
<br />
|
|
<div>
|
|
<label for="selectThemeSong" class="selectLabel">${LabelEnableThemeSongs}</label>
|
|
<select id="selectThemeSong" data-mini="true">
|
|
<option value="">${OptionAuto}</option>
|
|
<option value="1">${OptionYes}</option>
|
|
<option value="0">${OptionNo}</option>
|
|
</select>
|
|
<div class="fieldDescription">${LabelEnableThemeSongsHelp}</div>
|
|
</div>
|
|
<br />
|
|
<div class="fldEnableBackdrops" style="display:none;">
|
|
<label for="selectBackdrop" class="selectLabel">${LabelEnableBackdrops}</label>
|
|
<select id="selectBackdrop" data-mini="true">
|
|
<option value="">${OptionAuto}</option>
|
|
<option value="1">${OptionYes}</option>
|
|
<option value="0">${OptionNo}</option>
|
|
</select>
|
|
<div class="fieldDescription">${LabelEnableBackdropsHelp}</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="detailSection requiresUserPreferences">
|
|
<h1>
|
|
${HeaderDisplay}
|
|
</h1>
|
|
<div class="detailSectionContent">
|
|
<br />
|
|
<div>
|
|
<paper-checkbox class="chkDisplayMissingEpisodes">${LabelDisplayMissingEpisodesWithinSeasons}</paper-checkbox>
|
|
</div>
|
|
<br />
|
|
<div>
|
|
<paper-checkbox class="chkDisplayUnairedEpisodes">${LabelUnairedMissingEpisodesWithinSeasons}</paper-checkbox>
|
|
</div>
|
|
<br />
|
|
<div>
|
|
<paper-checkbox class="chkGroupMoviesIntoCollections">${LabelGroupMoviesIntoCollections}</paper-checkbox>
|
|
<div class="fieldDescription paperCheckboxFieldDescription">${LabelGroupMoviesIntoCollectionsHelp}</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<button type="submit" data-role="none" class="clearButton block btnSave hide">
|
|
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|