jellyfin-web/dashboard-ui/tvstudios.html

49 lines
2.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2013-04-11 15:33:49 -07:00
<html>
<head>
2013-04-11 15:33:49 -07:00
<title>Media Browser</title>
</head>
<body>
2013-12-24 11:37:29 -07:00
<div id="tvStudiosPage" data-role="page" class="page libraryPage" data-theme="b" data-view="tv">
<div class="libraryViewNav">
<a href="tvrecommended.html">Suggested</a>
2014-02-22 22:52:30 -07:00
<a href="tvlatest.html">Latest</a>
2013-10-24 10:49:24 -07:00
<a href="tvupcoming.html">Upcoming</a>
<a href="tvshows.html">Shows</a>
2013-09-13 13:45:27 -07:00
<a href="episodes.html">Episodes</a>
<a href="tvgenres.html">Genres</a>
2013-12-27 14:10:06 -07:00
<a href="tvpeople.html">People</a>
<a href="tvstudios.html" class="ui-btn-active">Networks</a>
</div>
2013-04-11 15:33:49 -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-11 15:33:49 -07:00
</div>
2013-04-23 16:21:49 -07:00
<div id="items" class="itemsContainer"></div>
2013-04-11 15:33:49 -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-11 20:50:47 -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-11 20:50:47 -07:00
<label for="chkIsFavorite">Favorite</label>
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-11 20:50:47 -07:00
<label for="chkLikes">Likes</label>
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-11 20:50:47 -07:00
<label for="chkDislikes">Dislikes</label>
</fieldset>
</form>
</div>
2013-04-11 15:33:49 -07:00
</div>
</body>
2013-04-11 15:33:49 -07:00
</html>