jellyfin-web/dashboard-ui/collections.html

117 lines
5.7 KiB
HTML
Raw Normal View History

2013-04-01 20:28:20 -07:00
<!DOCTYPE html>
<html>
<head>
<title>Media Browser</title>
2013-04-01 20:28:20 -07:00
</head>
<body>
2014-03-13 02:00:47 -07:00
<div id="boxsetsPage" data-role="page" class="page libraryPage" data-theme="b" data-view="boxsets">
<div class="alphabetPicker">
</div>
<div data-role="content">
<div class="viewSettings">
2014-03-13 19:05:33 -07:00
<div class="viewControls" data-role="controlgroup" data-type="horizontal">
<button data-mini="true" data-icon="sort" data-inline="true" data-iconpos="notext" title="Sort" onclick="$('#sortPanel', $(this).parents('.page')).panel( 'toggle' );">Sort</button>
<button data-mini="true" data-icon="filter" data-inline="true" data-iconpos="notext" title="Filter" onclick="$('#filterPanel', $(this).parents('.page')).panel( 'toggle' );">Filter</button>
</div>
2014-03-17 07:48:16 -07:00
<div class="listTopPaging">
</div>
<button id="btnNewCollection" data-mini="true" data-icon="plus" data-inline="true" class="hide">New</button>
</div>
2013-04-23 16:21:49 -07:00
<div id="items" class="itemsContainer"></div>
</div>
2014-03-05 22:17:13 -07:00
<div data-role="panel" id="newCollectionPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
<form class="newCollectionForm">
<h3>New Collection</h3>
<br />
<div>
<label for="txtNewCollectionName">Name:</label>
<input type="text" id="txtNewCollectionName" required="required" />
2014-03-07 21:20:31 -07:00
<div class="fieldDescription">Example: Star Wars Collection</div>
2014-03-05 22:17:13 -07:00
</div>
2014-03-07 21:20:31 -07:00
<br />
2014-03-05 22:17:13 -07:00
<div>
<label for="chkEnableInternetMetadata">Search the internet for artwork and metadata</label>
<input type="checkbox" id="chkEnableInternetMetadata" data-mini="true" />
</div>
<br />
<p>
<button id="btnSubmitNewCollection" type="submit" data-icon="plus" data-mini="true" data-theme="b">Create</button>
2014-03-05 22:17:13 -07:00
</p>
</form>
</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-03 21:21:46 -07:00
<form>
<div id="sortpanel">
<fieldset data-role="controlgroup">
2014-03-05 22:17:13 -07:00
<legend>Sort By:
</legend>
2013-04-03 21:21:46 -07:00
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">
<label for="radioSortName">Name</label>
2013-04-03 21:21:46 -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">
<label for="radioCommunityRating">Community Rating</label>
2013-04-03 21:21:46 -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">
<label for="radioDateCreated">Date Added</label>
</fieldset>
2013-04-03 21:21:46 -07:00
<fieldset data-role="controlgroup">
2014-03-05 22:17:13 -07:00
<legend>Sort Order:
</legend>
2013-04-03 21:21:46 -07:00
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">
<label for="radioAscending">Ascending</label>
2013-04-03 21:21:46 -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">
<label for="radioDescending">Descending</label>
</fieldset>
</div>
</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">
<form>
<fieldset data-role="controlgroup">
2014-03-05 22:17:13 -07:00
<legend>Filters:
</legend>
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
<label for="chkIsFavorite">Favorite</label>
2013-04-03 21:21:46 -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">
<label for="chkLikes">Likes</label>
2013-04-03 21:21:46 -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">
<label for="chkDislikes">Dislikes</label>
</fieldset>
2013-04-29 19:00:42 -07:00
<fieldset data-role="controlgroup">
2014-03-05 22:17:13 -07:00
<legend>Features:
2013-04-29 19:00:42 -07:00
</legend>
2013-12-24 11:37:29 -07:00
<input class="chkFeatureFilter" type="checkbox" name="chkTrailer" id="chkTrailer" data-mini="true">
2013-04-29 19:00:42 -07:00
<label for="chkTrailer">Trailer</label>
2013-12-24 11:37:29 -07:00
<input class="chkFeatureFilter" type="checkbox" name="chkThemeSong" id="chkThemeSong" data-mini="true">
2013-04-29 19:00:42 -07:00
<label for="chkThemeSong">Theme song</label>
2013-12-24 11:37:29 -07:00
<input class="chkFeatureFilter" type="checkbox" name="chkThemeVideo" id="chkThemeVideo" data-mini="true">
2013-04-29 19:00:42 -07:00
<label for="chkThemeVideo">Theme video</label>
</fieldset>
</form>
</div>
2014-03-05 22:17:13 -07:00
<script type="text/javascript">
$('.newCollectionForm').off('submit', BoxSetsPage.onNewCollectionSubmit).on('submit', BoxSetsPage.onNewCollectionSubmit);
</script>
</div>
2013-04-01 20:28:20 -07:00
</body>
</html>