mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
115 lines
5.8 KiB
HTML
115 lines
5.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleMediaBrowser}</title>
|
|
</head>
|
|
<body>
|
|
<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">
|
|
<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>
|
|
<button id="btnNewCollection" data-mini="true" data-icon="plus" data-inline="true" class="hide">New</button>
|
|
</div>
|
|
<div id="items" class="itemsContainer"></div>
|
|
</div>
|
|
<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" />
|
|
<div class="fieldDescription">Example: Star Wars Collection</div>
|
|
</div>
|
|
|
|
<br />
|
|
<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>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
|
|
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-position-fixed="true">
|
|
|
|
<form>
|
|
<div id="sortpanel">
|
|
<fieldset data-role="controlgroup">
|
|
<legend>Sort By:
|
|
</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>
|
|
</fieldset>
|
|
|
|
<fieldset data-role="controlgroup">
|
|
<legend>Sort Order:
|
|
</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 data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-position-fixed="true">
|
|
<form>
|
|
<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>
|
|
|
|
<fieldset data-role="controlgroup">
|
|
<legend>${LabelFeatures}</legend>
|
|
|
|
<input class="chkFeatureFilter" type="checkbox" name="chkTrailer" id="chkTrailer" data-mini="true">
|
|
<label for="chkTrailer">${OptionHasTrailer}</label>
|
|
|
|
<input class="chkFeatureFilter" type="checkbox" name="chkThemeSong" id="chkThemeSong" data-mini="true">
|
|
<label for="chkThemeSong">${OptionHasThemeSong}</label>
|
|
|
|
<input class="chkFeatureFilter" type="checkbox" name="chkThemeVideo" id="chkThemeVideo" data-mini="true">
|
|
<label for="chkThemeVideo">${OptionHasThemeVideo}</label>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('.newCollectionForm').off('submit', BoxSetsPage.onNewCollectionSubmit).on('submit', BoxSetsPage.onNewCollectionSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|