jellyfin-web/dashboard-ui/tvshows.html

179 lines
11 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-10-17 08:35:53 -07:00
<div id="tvShowsPage" data-role="page" class="page libraryPage" data-theme="a" 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" class="ui-btn-active">Shows</a>
2013-09-13 13:45:27 -07:00
<a href="episodes.html">Episodes</a>
<a href="tvgenres.html">Genres</a>
<a href="tvpeople.html">Actors</a>
<a href="tvstudios.html">Networks</a>
</div>
<div class="alphabetPicker">
</div>
2013-04-04 21:20:41 -07:00
<div data-role="content">
<div class="viewSettings">
2013-04-18 22:08:18 -07:00
<div class="viewControls">
<div style="display: inline-block;">
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
<option value="Backdrop">Backdrop</option>
<option value="Poster">Poster</option>
2013-05-15 05:05:07 -07:00
<option value="Timeline">Timeline</option>
2013-04-18 22:08:18 -07:00
</select>
</div>
<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 class="listTopPaging">
2013-04-10 22:27:27 -07:00
</div>
<div class="viewSummary"></div>
2013-04-04 21:20:41 -07:00
</div>
2013-04-23 16:21:49 -07:00
<div id="items" class="itemsContainer"></div>
2013-04-04 21:20:41 -07:00
</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
<input class="radioSortBy defaultSort" data-theme="c" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
2013-04-11 12:36:50 -07:00
<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">
2013-10-17 11:24:27 -07:00
<label for="radioCommunityRating">IMDb 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-09-22 09:49:55 -07:00
<input class="radioSortBy" type="radio" name="radioSortBy" data-theme="c" id="radioContentRating" value="off" data-sortby="OfficialRating" data-mini="true">
<label for="radioContentRating">Parental Rating</label>
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>
2013-12-01 19:24:14 -07:00
<fieldset data-role="controlgroup" data-type="horizontal" style="margin-bottom: 1em;">
<legend>Filters:</legend>
<input type="radio" name="radioFilterTypes" id="radioBasicFilters" value="on" checked="checked" data-mini="true" data-theme="c">
<label for="radioBasicFilters">Basic</label>
<input type="radio" name="radioFilterTypes" id="radioAdvancedFilters" value="off" data-mini="true" data-theme="c">
<label for="radioAdvancedFilters">Advanced</label>
</fieldset>
2013-04-04 20:41:37 -07:00
2013-12-01 19:24:14 -07:00
<div class="basicFilters">
<fieldset data-role="controlgroup">
<legend>
<strong>Filters:</strong>
</legend>
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-theme="c" data-filter="IsFavorite" data-mini="true">
<label for="chkIsFavorite">Favorite</label>
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-theme="c" data-filter="Likes" data-mini="true">
<label for="chkLikes">Likes</label>
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-theme="c" data-filter="Dislikes" data-mini="true">
<label for="chkDislikes">Dislikes</label>
</fieldset>
<fieldset data-role="controlgroup">
<legend>
<strong>Status:</strong>
</legend>
<input class="chkStatus" type="checkbox" name="chkStatusContinuing" id="chkStatusContinuing" data-theme="c" data-filter="Continuing" data-mini="true">
<label for="chkStatusContinuing">Continuing</label>
<input class="chkStatus" type="checkbox" name="chkStatusEnded" id="chkStatusEnded" data-theme="c" data-filter="Ended" data-mini="true">
<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>
</div>
<div class="advancedFilters" style="display: none;">
2013-04-04 20:41:37 -07:00
2013-12-01 19:24:14 -07:00
<fieldset data-role="controlgroup">
<legend>
<strong>Management:</strong>
</legend>
2013-04-09 05:31:43 -07:00
2013-12-01 19:24:14 -07:00
<input class="chkMissingImdbId" type="checkbox" data-theme="c" name="chkMissingImdbId" id="chkMissingImdbId" data-mini="true">
<label for="chkMissingImdbId">Missing IMDb Id</label>
2013-12-01 19:24:14 -07:00
<input class="chkMissingTvdbId" type="checkbox" data-theme="c" name="chkMissingTvdbId" id="chkMissingTvdbId" data-mini="true">
<label for="chkMissingTvdbId">Missing Tvdb Id</label>
2013-04-29 18:32:15 -07:00
2013-12-01 19:24:14 -07:00
<input class="chkMissingOverview" type="checkbox" data-theme="c" name="chkMissingOverview" id="chkMissingOverview" data-mini="true">
<label for="chkMissingOverview">Missing Overview</label>
2013-04-29 18:32:15 -07:00
2013-12-01 19:24:14 -07:00
<input class="chkYearMismatch" type="checkbox" data-theme="c" name="chkYearMismatch" id="chkYearMismatch" data-mini="true">
<label for="chkYearMismatch">File/Metadata Years Mismatched</label>
2013-04-29 18:32:15 -07:00
2013-12-01 19:24:14 -07:00
</fieldset>
2013-12-01 19:24:14 -07:00
<fieldset data-role="controlgroup">
<legend>
<strong>Features:</strong>
</legend>
2013-04-29 18:32:15 -07:00
2013-12-01 19:24:14 -07:00
<input class="chkFeatureFilter" type="checkbox" data-theme="c" name="chkTrailer" id="chkTrailer" data-mini="true">
<label for="chkTrailer">Trailer</label>
2013-04-29 18:32:15 -07:00
2013-12-01 19:24:14 -07:00
<input class="chkFeatureFilter" type="checkbox" data-theme="c" name="chkSpecialFeature" id="chkSpecialFeature" data-mini="true">
<label for="chkSpecialFeature">Special features</label>
<input class="chkFeatureFilter" type="checkbox" data-theme="c" name="chkThemeSong" id="chkThemeSong" data-mini="true">
<label for="chkThemeSong">Theme song</label>
<input class="chkFeatureFilter" type="checkbox" data-theme="c" name="chkThemeVideo" id="chkThemeVideo" data-mini="true">
<label for="chkThemeVideo">Theme video</label>
</fieldset>
</div>
2013-04-04 21:20:41 -07:00
</form>
</div>
</div>
2013-04-01 20:28:20 -07:00
</body>
</html>