mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
110 lines
6.3 KiB
HTML
110 lines
6.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<div id="itemListPage" data-role="page" class="page libraryPage folderListPage" data-theme="b">
|
|
<div class="alphabetPicker">
|
|
</div>
|
|
<div data-role="content" class="itemListContent">
|
|
|
|
<h1 class="listHeader" style="margin: 0; text-align: center;"><span id="itemName"></span>
|
|
<span id="editButtonContainer" style="display: none; margin-left: .5em;">
|
|
<button id="btnEdit" type="button" data-icon="edit" data-inline="true" data-mini="true">Edit</button>
|
|
</span>
|
|
</h1>
|
|
<div class="viewSettings">
|
|
<div class="viewControls">
|
|
<div style="display: inline-block;">
|
|
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
|
<option value="Backdrop">Backdrop</option>
|
|
<option value="Poster">Poster</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="viewControls" data-role="controlgroup" data-type="horizontal">
|
|
<button data-mini="true" data-icon="sort" data-inline="true" data-iconpos="notext" title="${ButtonSort}" onclick="$('#sortPanel', $(this).parents('.page')).panel( 'toggle' );">${ButtonSort}</button>
|
|
<button data-mini="true" data-icon="filter" data-inline="true" data-iconpos="notext" title="${ButtonFilter}" onclick="$('#filterPanel', $(this).parents('.page')).panel( 'toggle' );">${ButtonFilter}</button>
|
|
</div>
|
|
<div class="listTopPaging">
|
|
</div>
|
|
</div>
|
|
<div id="items" class="itemsContainer"></div>
|
|
</div>
|
|
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-position-fixed="true">
|
|
|
|
<form>
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<strong>${HeaderSortBy}</strong>
|
|
</legend>
|
|
|
|
<input class="radioSortBy defaultSort" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
|
|
<label for="radioSortName">Name</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating" data-mini="true">
|
|
<label for="radioCommunityRating">${OptionCommunityRating}</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
|
|
<label for="radioDateCreated">${OptionDateAdded}</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDatePlayed" value="off" data-sortby="DatePlayed" data-mini="true">
|
|
<label for="radioDatePlayed">${OptionDatePlayed}</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioContentRating" value="off" data-sortby="OfficialRating" data-mini="true">
|
|
<label for="radioContentRating">${OptionParentalRating}</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="PremiereDate" data-mini="true">
|
|
<label for="radioPremiereDate">${OptionReleaseDate}</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioRuntime" value="off" data-sortby="Runtime" data-mini="true">
|
|
<label for="radioRuntime">${OptionRuntime}</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioIsFolder" value="off" data-sortby="IsFolder,SortName" data-mini="true">
|
|
<label for="radioIsFolder">Folders</label>
|
|
</fieldset>
|
|
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<strong>${HeaderSortOrder}</strong>
|
|
</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>
|
|
</form>
|
|
</div>
|
|
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-position-fixed="true">
|
|
<form>
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<strong>${HeaderFilters}</strong>
|
|
</legend>
|
|
<input class="chkStandardFilter" type="checkbox" name="chkPlayed" id="chkPlayed" data-filter="IsPlayed" data-mini="true">
|
|
<label for="chkPlayed">${OptionPlayed}</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkUnplayed" id="chkUnplayed" data-filter="IsUnPlayed" data-mini="true">
|
|
<label for="chkUnplayed">${OptionUnplayed}</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkResumable" id="chkResumable" data-filter="IsResumable" data-mini="true">
|
|
<label for="chkResumable">${OptionResumable}</label>
|
|
|
|
<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>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|