jellyfin-web/dashboard-ui/itemlist.html

110 lines
6.4 KiB
HTML
Raw Normal View History

2013-03-05 16:35:28 -07:00
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
2014-05-02 21:20:04 -07:00
<div id="itemListPage" data-role="page" class="page libraryPage folderListPage noSecondaryNavPage" data-theme="b">
2013-06-04 18:41:59 -07:00
<div class="alphabetPicker">
</div>
2013-03-06 22:34:00 -07:00
<div data-role="content" class="itemListContent">
2013-03-05 23:22:19 -07:00
<h1 class="listHeader" style="margin: 0; text-align: center;"><span id="itemName"></span>
<span id="editButtonContainer" style="display: none; margin-left: .5em;">
2014-04-07 21:17:18 -07:00
<button id="btnEdit" type="button" data-icon="edit" data-inline="true" data-mini="true">${ButtonEdit}</button>
2013-05-04 21:49:49 -07:00
</span>
</h1>
2013-04-18 19:52:22 -07:00
<div class="viewSettings">
2013-04-18 22:08:18 -07:00
<div class="viewControls">
<div style="display: inline-block;">
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
2014-04-07 21:17:18 -07:00
<option value="Backdrop">${OptionBackdrop}</option>
<option value="Poster">${OptionPoster}</option>
2013-04-18 22:08:18 -07:00
</select>
</div>
</div>
2014-03-13 19:05:33 -07:00
<div class="viewControls" data-role="controlgroup" data-type="horizontal">
2014-04-02 14:55:19 -07:00
<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>
2014-03-13 19:05:33 -07:00
</div>
2014-03-17 07:48:16 -07:00
<div class="listTopPaging">
</div>
2013-04-18 19:52:22 -07:00
</div>
2013-04-23 16:21:49 -07:00
<div id="items" class="itemsContainer"></div>
2013-03-05 16:35:28 -07:00
</div>
2014-03-18 21:59:45 -07:00
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-position-fixed="true">
2013-04-18 19:52:22 -07:00
<form>
<fieldset data-role="controlgroup">
<legend>
2014-04-02 14:55:19 -07:00
<strong>${HeaderSortBy}</strong>
2013-04-18 19:52:22 -07:00
</legend>
2013-12-24 11:37:29 -07:00
<input class="radioSortBy defaultSort" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
2014-04-07 21:17:18 -07:00
<label for="radioSortName">${OptionNameSort}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="radioCommunityRating">${OptionCommunityRating}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="radioDateCreated">${OptionDateAdded}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDatePlayed" value="off" data-sortby="DatePlayed" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="radioDatePlayed">${OptionDatePlayed}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioContentRating" value="off" data-sortby="OfficialRating" data-mini="true">
2014-04-03 15:50:04 -07:00
<label for="radioContentRating">${OptionParentalRating}</label>
2013-09-22 09:49:55 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="PremiereDate" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="radioPremiereDate">${OptionReleaseDate}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioRuntime" value="off" data-sortby="Runtime" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="radioRuntime">${OptionRuntime}</label>
2013-09-02 16:17:25 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioIsFolder" value="off" data-sortby="IsFolder,SortName" data-mini="true">
2014-04-07 21:17:18 -07:00
<label for="radioIsFolder">${OptionFolderSort}</label>
2013-04-18 19:52:22 -07:00
</fieldset>
<fieldset data-role="controlgroup">
<legend>
2014-04-02 14:55:19 -07:00
<strong>${HeaderSortOrder}</strong>
2013-04-18 19:52:22 -07:00
</legend>
2013-12-24 11:37:29 -07:00
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="radioAscending">${OptionAscending}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="radioDescending">${OptionDescending}</label>
2013-04-18 19:52:22 -07:00
</fieldset>
</form>
</div>
2014-03-18 21:59:45 -07:00
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-position-fixed="true">
2013-04-18 19:52:22 -07:00
<form>
<fieldset data-role="controlgroup">
<legend>
2014-04-02 14:55:19 -07:00
<strong>${HeaderFilters}</strong>
2013-04-18 19:52:22 -07:00
</legend>
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkPlayed" id="chkPlayed" data-filter="IsPlayed" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkPlayed">${OptionPlayed}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkUnplayed" id="chkUnplayed" data-filter="IsUnPlayed" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkUnplayed">${OptionUnplayed}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkResumable" id="chkResumable" data-filter="IsResumable" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkResumable">${OptionResumable}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkIsFavorite">${OptionFavorite}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkLikes">${OptionLikes}</label>
2013-04-18 19:52:22 -07:00
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkDislikes">${OptionDislikes}</label>
2013-04-18 19:52:22 -07:00
</fieldset>
</form>
</div>
2013-03-05 16:35:28 -07:00
</div>
</body>
</html>