jellyfin-web/dashboard-ui/tvshows.html

117 lines
7.1 KiB
HTML
Raw Normal View History

2013-04-01 20:28:20 -07:00
<!DOCTYPE html>
<html>
<head>
2013-04-04 21:20:41 -07:00
<title>Media Browser</title>
2013-04-01 20:28:20 -07:00
</head>
<body>
2013-04-10 22:27:27 -07:00
<div id="tvShowsPage" data-role="page" class="page libraryPage noLogoPage listPage" data-theme="a">
2013-04-04 21:20:41 -07:00
<h1 class="libraryPageHeader"><a href="index.html" class="imageLink">
<img src="css/images/home.png"></a>TV Shows</h1>
<div data-role="content">
<div data-role="controlgroup" data-type="horizontal" class="libraryViewNav" data-mini="true">
2013-04-09 14:03:15 -07:00
<a href="tvrecommended.html" data-role="button">Suggested</a>
2013-04-04 21:20:41 -07:00
<a href="tvshows.html" data-role="button" class="ui-btn-active">Shows</a>
2013-04-11 12:36:50 -07:00
<a href="tvgenres.html" data-role="button">Genres</a>
2013-04-11 20:50:47 -07:00
<a href="tvpeople.html" data-role="button">Actors</a>
2013-04-11 15:33:49 -07:00
<a href="tvstudios.html" data-role="button">Networks</a>
2013-04-04 21:20:41 -07:00
</div>
<div class="viewSettings">
2013-04-10 22:27:27 -07:00
<div style="display: inline-block;">
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
<option value="Tile">Tile</option>
<option value="Poster">Poster</option>
</select>
</div>
2013-04-04 21:20:41 -07:00
<button data-mini="true" data-icon="sort" data-inline="true" onclick="$('#sortPanel', $.mobile.activePage).panel( 'toggle' );">Sort</button>
<button data-mini="true" data-icon="filter" data-inline="true" onclick="$('#filterPanel', $.mobile.activePage).panel( 'toggle' );">Filter</button>
</div>
<div id="items"></div>
</div>
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-theme="b" data-position-fixed="true">
2013-04-04 20:41:37 -07:00
2013-04-04 21:20:41 -07:00
<form>
2013-04-11 12:36:50 -07:00
<fieldset data-role="controlgroup">
<legend>
<strong>Sort By:</strong>
</legend>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
<label for="radioSortName">Name</label>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating" data-mini="true">
<label for="radioCommunityRating">Community Rating</label>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
<label for="radioDateCreated">Date Added</label>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="PremiereDate" data-mini="true">
<label for="radioPremiereDate">Premiere Date</label>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioRuntime" value="off" data-sortby="Runtime" data-mini="true">
<label for="radioRuntime">Runtime</label>
</fieldset>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<fieldset data-role="controlgroup">
<legend>
<strong>Sort Order:</strong>
</legend>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<input class="radioSortOrder" data-theme="c" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending" data-mini="true">
<label for="radioAscending">Ascending</label>
2013-04-04 20:41:37 -07:00
2013-04-11 12:36:50 -07:00
<input class="radioSortOrder" data-theme="c" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true">
<label for="radioDescending">Descending</label>
</fieldset>
2013-04-04 21:20:41 -07:00
</form>
</div>
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-theme="b" data-position-fixed="true">
<form>
<fieldset data-role="controlgroup">
<legend>
2013-04-09 09:47:50 -07:00
<strong>Filters:</strong>
2013-04-04 21:20:41 -07:00
</legend>
2013-04-09 09:47:50 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-theme="c" data-filter="IsFavorite" data-mini="true">
2013-04-04 21:20:41 -07:00
<label for="chkIsFavorite">Favorite</label>
2013-04-04 20:41:37 -07:00
2013-04-09 09:47:50 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-theme="c" data-filter="Likes" data-mini="true">
2013-04-04 21:20:41 -07:00
<label for="chkLikes">Likes</label>
2013-04-04 20:41:37 -07:00
2013-04-09 09:47:50 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-theme="c" data-filter="Dislikes" data-mini="true">
2013-04-04 21:20:41 -07:00
<label for="chkDislikes">Dislikes</label>
</fieldset>
2013-04-09 05:31:43 -07:00
<fieldset data-role="controlgroup">
<legend>
2013-04-09 09:47:50 -07:00
<strong>Status:</strong>
2013-04-09 05:31:43 -07:00
</legend>
2013-04-09 09:47:50 -07:00
<input class="chkStatus" type="checkbox" name="chkStatusContinuing" id="chkStatusContinuing" data-theme="c" data-filter="Continuing" data-mini="true">
2013-04-09 05:31:43 -07:00
<label for="chkStatusContinuing">Continuing</label>
2013-04-09 09:47:50 -07:00
<input class="chkStatus" type="checkbox" name="chkStatusEnded" id="chkStatusEnded" data-theme="c" data-filter="Ended" data-mini="true">
2013-04-09 05:31:43 -07:00
<label for="chkStatusEnded">Ended</label>
</fieldset>
<fieldset data-role="controlgroup">
<legend>
<strong>Air Days:</strong>
</legend>
<input class="chkAirDays" type="checkbox" name="chkSunday" id="chkSunday" data-theme="c" data-filter="Sunday" data-mini="true">
<label for="chkSunday">Sunday</label>
<input class="chkAirDays" type="checkbox" name="chkMonday" id="chkMonday" data-theme="c" data-filter="Monday" data-mini="true">
<label for="chkMonday">Monday</label>
<input class="chkAirDays" type="checkbox" name="chkTuesday" id="chkTuesday" data-theme="c" data-filter="Tuesday" data-mini="true">
<label for="chkTuesday">Tuesday</label>
<input class="chkAirDays" type="checkbox" name="chkWednesday" id="chkWednesday" data-theme="c" data-filter="Wednesday" data-mini="true">
<label for="chkWednesday">Wednesday</label>
<input class="chkAirDays" type="checkbox" name="chkThursday" id="chkThursday" data-theme="c" data-filter="Thursday" data-mini="true">
<label for="chkThursday">Thursday</label>
<input class="chkAirDays" type="checkbox" name="chkFriday" id="chkFriday" data-theme="c" data-filter="Friday" data-mini="true">
<label for="chkFriday">Friday</label>
<input class="chkAirDays" type="checkbox" name="chkSaturday" id="chkSaturday" data-theme="c" data-filter="Saturday" data-mini="true">
<label for="chkSaturday">Saturday</label>
</fieldset>
2013-04-04 21:20:41 -07:00
</form>
</div>
</div>
2013-04-01 20:28:20 -07:00
</body>
</html>