jellyfin-web/dashboard-ui/tvpeople.html

101 lines
5.1 KiB
HTML
Raw Normal View History

2013-04-11 20:50:47 -07:00
<!DOCTYPE html>
<html>
<head>
<title>Media Browser</title>
</head>
<body>
2013-12-24 11:37:29 -07:00
<div id="tvPeoplePage" data-role="page" class="page libraryPage" data-theme="b" data-view="tv">
<div class="libraryViewNav">
<a href="tvrecommended.html">Suggested</a>
<a href="tvnextup.html">Next up</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" class="ui-btn-active">People</a>
<a href="tvstudios.html">Networks</a>
</div>
2013-05-16 13:46:18 -07:00
<div class="alphabetPicker">
</div>
2013-04-11 20:50:47 -07:00
<div data-role="content">
<div class="viewSettings">
2013-04-18 22:08:18 -07:00
<div class="viewControls">
2013-12-27 09:18:42 -07:00
<button data-mini="true" data-icon="sort" data-inline="true" onclick="$('#sortPanel', $(this).parents('.page')).panel( 'toggle' );">Sort</button>
<button data-mini="true" data-icon="filter" data-inline="true" onclick="$('#filterPanel', $(this).parents('.page')).panel( 'toggle' );">Filter</button>
2013-04-18 22:08:18 -07:00
</div>
<div class="listTopPaging">
</div>
<div class="viewSummary"></div>
2013-04-11 20:50:47 -07:00
</div>
2013-04-23 16:21:49 -07:00
<div id="items" class="itemsContainer"></div>
2013-04-11 20:50:47 -07:00
</div>
2013-12-24 11:37:29 -07:00
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
2013-04-11 20:50:47 -07:00
<form>
<fieldset data-role="controlgroup">
<legend>
<strong>Sort By:</strong>
</legend>
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">
2013-04-11 20:50:47 -07:00
<label for="radioSortName">Name</label>
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioSeriesCount" value="on" checked="checked" data-sortby="SeriesCount,SortName" data-mini="true">
<label for="radioSeriesCount">Series count</label>
2013-12-24 11:37:29 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioEpisodeCount" value="on" checked="checked" data-sortby="EpisodeCount,SortName" data-mini="true">
<label for="radioEpisodeCount">Episode count</label>
2013-04-11 20:50:47 -07:00
</fieldset>
<fieldset data-role="controlgroup">
<legend>
<strong>Sort Order:</strong>
</legend>
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">
2013-04-11 20:50:47 -07:00
<label for="radioAscending">Ascending</label>
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">
2013-04-11 20:50:47 -07:00
<label for="radioDescending">Descending</label>
</fieldset>
</form>
</div>
2013-12-24 11:37:29 -07:00
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-theme="a" 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>
2013-04-13 16:43:41 -07:00
<fieldset data-role="controlgroup">
<legend>
<strong>Person Types:</strong>
</legend>
2013-12-24 11:37:29 -07:00
<input class="chkPersonTypeFilter" type="checkbox" name="chkActor" id="chkActor" data-filter="Actor" data-mini="true">
2013-04-13 16:43:41 -07:00
<label for="chkActor">Actors</label>
2013-12-24 11:37:29 -07:00
<input class="chkPersonTypeFilter" type="checkbox" name="chkGuestStars" id="chkGuestStars" data-filter="GuestStar" data-mini="true">
2013-04-13 16:43:41 -07:00
<label for="chkGuestStars">Guest Stars</label>
2013-12-24 11:37:29 -07:00
<input class="chkPersonTypeFilter" type="checkbox" name="chkDirectors" id="chkDirectors" data-filter="Director" data-mini="true">
2013-05-03 21:38:38 -07:00
<label for="chkDirectors">Directors</label>
2013-12-24 11:37:29 -07:00
<input class="chkPersonTypeFilter" type="checkbox" name="chkWriters" id="chkWriters" data-filter="Writer" data-mini="true">
2013-05-03 21:38:38 -07:00
<label for="chkWriters">Writers</label>
</fieldset>
2013-04-11 20:50:47 -07:00
</form>
</div>
</div>
</body>
</html>