jellyfin-web/dashboard-ui/games.html

166 lines
8.2 KiB
HTML
Raw Normal View History

2013-04-14 20:37:07 -07:00
<!DOCTYPE html>
<html>
<head>
2015-03-21 11:12:12 -07:00
<title>Emby</title>
2013-04-14 20:37:07 -07:00
</head>
<body>
2015-05-17 12:50:37 -07:00
<div id="gamesPage" data-role="page" class="page libraryPage listPage" data-require="scripts/gamespage,scripts/queryfilters">
2014-05-01 19:54:33 -07:00
<div class="libraryViewNav scopedLibraryViewNav">
2015-04-02 09:26:42 -07:00
<a href="gamesrecommended.html">${TabSuggestions}</a>
2014-05-01 19:54:33 -07:00
<a href="#" class="ui-btn-active">${TabGames}</a>
2014-04-07 21:17:18 -07:00
<a href="gamesystems.html">${TabGameSystems}</a>
2014-04-01 15:23:07 -07:00
<a href="gamegenres.html">${TabGenres}</a>
2014-04-03 15:50:04 -07:00
<a href="gamestudios.html">${TabStudios}</a>
</div>
<div class="alphabetPicker">
</div>
2013-04-18 21:27:16 -07:00
<div data-role="content">
<div class="viewSettings">
2014-03-17 07:48:16 -07:00
<div class="listTopPaging">
</div>
2013-04-18 21:27:16 -07:00
</div>
2013-04-29 18:32:15 -07:00
<div id="items" class="itemsContainer"></div>
2013-04-18 21:27:16 -07:00
</div>
2014-07-19 21:46:29 -07:00
<div data-role="panel" class="viewPanel" data-theme="a" data-position="right" data-display="overlay" data-position-fixed="true">
2013-04-18 21:27:16 -07:00
<form>
2014-07-19 21:46:29 -07:00
<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>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<div class="tabView viewTab">
<div>
<label for="selectView">${LabelView}</label>
<select id="selectView">
<option value="List">${OptionList}</option>
2014-11-10 20:41:19 -07:00
<option value="Poster">${OptionPoster}</option>
<option value="PosterCard">${OptionPosterCard}</option>
2014-07-19 21:46:29 -07:00
</select>
</div>
<br />
<div>
<label for="selectPageSize">${LabelPageSize}</label>
2015-08-16 21:08:33 -07:00
<select id="selectPageSize" class="selectPageSize"></select>
2014-07-19 21:46:29 -07:00
</div>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
</div>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<div class="tabSort viewTab">
<fieldset data-role="controlgroup">
<legend>
${HeaderSortBy}
</legend>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46: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">${OptionNameSort}</label>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating" data-mini="true">
<label for="radioCommunityRating">${OptionCommunityRating}</label>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
<label for="radioDateCreated">${OptionDateAdded}</label>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDatePlayed" value="off" data-sortby="DatePlayed" data-mini="true">
<label for="radioDatePlayed">${OptionDatePlayed}</label>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioContentRating" value="off" data-sortby="OfficialRating" data-mini="true">
<label for="radioContentRating">${OptionParentalRating}</label>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="PremiereDate" data-mini="true">
<label for="radioPremiereDate">${OptionReleaseDate}</label>
</fieldset>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<fieldset data-role="controlgroup">
<legend>
${HeaderSortOrder}
</legend>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46: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">${OptionAscending}</label>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true">
<label for="radioDescending">${OptionDescending}</label>
</fieldset>
2013-04-29 18:32:15 -07:00
2014-07-19 21:46:29 -07:00
</div>
2013-09-15 12:33:23 -07:00
2014-07-19 21:46:29 -07:00
<div class="tabFilter viewTab">
<fieldset data-role="controlgroup">
<legend>
${HeaderFilters}
</legend>
<input class="chkStandardFilter" type="checkbox" name="chkPlayed" id="chkPlayed" data-filter="IsPlayed" data-mini="true">
<label for="chkPlayed">${OptionPlayed}</label>
2013-09-15 12:33:23 -07:00
2014-07-19 21:46:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkUnplayed" id="chkUnplayed" data-filter="IsUnPlayed" data-mini="true">
<label for="chkUnplayed">${OptionUnplayed}</label>
2013-09-15 12:33:23 -07:00
2014-07-19 21:46:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
<label for="chkIsFavorite">${OptionFavorite}</label>
2013-09-15 12:33:23 -07:00
2014-07-19 21:46:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true">
<label for="chkLikes">${OptionLikes}</label>
2013-09-15 12:33:23 -07:00
2014-07-19 21:46:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true">
<label for="chkDislikes">${OptionDislikes}</label>
</fieldset>
2013-04-18 21:27:16 -07:00
2014-07-19 21:46:29 -07:00
<fieldset data-role="controlgroup">
<legend>
${HeaderNumberOfPlayers}
</legend>
2013-04-29 18:32:15 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioPlayers" type="radio" name="radioPlayers" id="radioAll" value="on" checked="checked" data-value="all" data-mini="true">
<label for="radioAll">${OptionAnyNumberOfPlayers}</label>
2013-04-29 18:32:15 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioPlayers" type="radio" name="radioPlayers" id="radioTwo" value="off" data-value="2" data-mini="true">
<label for="radioTwo">${Option2Player}</label>
2013-04-29 18:32:15 -07:00
2014-07-19 21:46:29 -07:00
<input class="radioPlayers" type="radio" name="radioPlayers" id="radioThree" value="off" data-value="3" data-mini="true">
<label for="radioThree">${Option3Player}</label>
<input class="radioPlayers" type="radio" name="radioPlayers" id="radioFour" value="off" data-value="4" data-mini="true">
<label for="radioFour">${Option4Player}</label>
</fieldset>
<br />
2014-07-19 21:46:29 -07:00
<div data-role="collapsible" data-collapsed="true" data-mini="true" class="genreFilters">
<h2>${HeaderGenres}</h2>
<div class="filterOptions">
</div>
</div>
2014-07-19 21:46:29 -07:00
<div data-role="collapsible" data-collapsed="true" data-mini="true" class="officialRatingFilters">
<h2>${HeaderParentalRatings}</h2>
2014-07-19 21:46:29 -07:00
<div class="filterOptions">
</div>
</div>
2014-07-19 21:46:29 -07:00
<div data-role="collapsible" data-collapsed="true" data-mini="true" class="tagFilters">
<h2>${HeaderTags}</h2>
2014-07-19 21:46:29 -07:00
<div class="filterOptions">
</div>
</div>
<div data-role="collapsible" data-collapsed="true" data-mini="true" class="yearFilters">
<h2>${HeaderYears}</h2>
<div class="filterOptions">
</div>
</div>
2014-07-19 21:46:29 -07:00
</div>
2013-04-18 21:27:16 -07:00
</form>
</div>
</div>
2013-04-14 20:37:07 -07:00
</body>
</html>