jellyfin-web/dashboard-ui/gamestudios.html

52 lines
2.2 KiB
HTML
Raw Normal View History

2013-04-14 20:37:07 -07:00
<!DOCTYPE html>
<html>
<head>
2013-04-18 21:27:16 -07:00
<title>Media Browser</title>
2013-04-14 20:37:07 -07:00
</head>
<body>
2013-12-24 11:37:29 -07:00
<div id="gameStudiosPage" data-role="page" class="page libraryPage listPage" data-theme="b" data-view="games">
<div class="libraryViewNav">
<a href="gamesrecommended.html">Suggested</a>
<a href="games.html">Games</a>
<a href="gamesystems.html">Game Systems</a>
<a href="gamegenres.html">Genres</a>
<a href="gamestudios.html" class="ui-btn-active">Studios</a>
</div>
2013-04-18 21:27:16 -07:00
<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="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>
2013-04-18 21:27:16 -07:00
</div>
2013-04-23 16:21:49 -07:00
<div id="items" class="itemsContainer"></div>
2013-04-18 21:27:16 -07:00
</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 21:27:16 -07:00
<form>
<fieldset data-role="controlgroup">
<legend>
<strong>Filters:</strong>
</legend>
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
2013-04-18 21:27:16 -07:00
<label for="chkIsFavorite">Favorite</label>
2013-04-14 20:37:07 -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">
2013-04-18 21:27:16 -07:00
<label for="chkLikes">Likes</label>
2013-04-14 20:37:07 -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">
2013-04-18 21:27:16 -07:00
<label for="chkDislikes">Dislikes</label>
</fieldset>
2013-04-14 20:37:07 -07:00
2013-04-18 21:27:16 -07:00
<fieldset data-role="controlgroup">
<legend>
<strong>Game Systems:</strong>
</legend>
2013-04-14 20:37:07 -07:00
2013-04-18 21:27:16 -07:00
</fieldset>
</form>
</div>
</div>
2013-04-14 20:37:07 -07:00
</body>
</html>