mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
91 lines
4.3 KiB
HTML
91 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Emby</title>
|
|
</head>
|
|
<body>
|
|
<div id="playlistsPage" data-role="page" class="page libraryPage noSecondaryNavPage" data-require="scripts/playlists" data-title="${HeaderPlaylists}">
|
|
|
|
<div data-role="content">
|
|
<div class="viewSettings">
|
|
|
|
<div class="listTopPaging">
|
|
|
|
</div>
|
|
</div>
|
|
<div id="items" class="itemsContainer paddedItemsContainer" style="text-align:center;"></div>
|
|
<div class="noItemsMessage" style="display: none; text-align: center;">
|
|
<p>${MessageNoPlaylistsAvailable}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div data-role="panel" class="viewPanel" data-theme="a" data-position="right" data-display="overlay" data-position-fixed="true">
|
|
<form>
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" data-mini="true" class="viewPanelTabs">
|
|
<a href="#" data-role="button" class="viewTabButton" data-tab="tabView">${TabView}</a>
|
|
<a href="#" data-role="button" class="viewTabButton" data-tab="tabSort">${TabSort}</a>
|
|
<a href="#" data-role="button" class="viewTabButton" data-tab="tabFilter">${TabFilter}</a>
|
|
</div>
|
|
|
|
<div class="tabView viewTab">
|
|
|
|
<div>
|
|
<label for="selectView">${LabelView}</label>
|
|
<select id="selectView">
|
|
<option value="List">${OptionList}</option>
|
|
<option value="Poster">${OptionPoster}</option>
|
|
</select>
|
|
</div>
|
|
<br />
|
|
<div>
|
|
<label for="selectPageSize">${LabelPageSize}</label>
|
|
<select id="selectPageSize"></select>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="tabFilter viewTab">
|
|
<fieldset data-role="controlgroup">
|
|
<legend>${HeaderFilters}</legend>
|
|
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
|
|
<label for="chkIsFavorite">${OptionFavorite}</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true">
|
|
<label for="chkLikes">${OptionLikes}</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true">
|
|
<label for="chkDislikes">${OptionDislikes}</label>
|
|
</fieldset>
|
|
|
|
</div>
|
|
<div class="tabSort viewTab">
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
${HeaderSortBy}
|
|
</legend>
|
|
|
|
<input class="radioSortBy defaultSort" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
|
|
<label for="radioSortName">${OptionNameSort}</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
|
|
<label for="radioDateCreated">${OptionDateAdded}</label>
|
|
</fieldset>
|
|
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
${HeaderSortOrder}
|
|
</legend>
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending" data-mini="true">
|
|
<label for="radioAscending">${OptionAscending}</label>
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true">
|
|
<label for="radioDescending">${OptionDescending}</label>
|
|
</fieldset>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|