2013-03-31 22:08:29 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Media Browser</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="moviesPage" data-role="page" class="page libraryPage noLogoPage" data-theme="a">
|
2013-04-01 10:00:38 -07:00
|
|
|
|
<h1 class="libraryPageHeader"><a href="index.html" class="imageLink">
|
2013-03-31 22:08:29 -07:00
|
|
|
|
<img src="css/images/home.png"></a>Movies</h1>
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="libraryViewNav" data-mini="true">
|
2013-03-31 22:44:37 -07:00
|
|
|
|
<a href="moviesrecommended.html" data-role="button">Recommended</a>
|
2013-03-31 22:08:29 -07:00
|
|
|
|
<a href="movies.html" data-role="button" class="ui-btn-active">Movies</a>
|
2013-04-01 20:28:20 -07:00
|
|
|
|
<a href="boxsets.html" data-role="button">Box Sets</a>
|
2013-03-31 22:08:29 -07:00
|
|
|
|
<a href="#" data-role="button">Genres</a>
|
|
|
|
|
<a href="#" data-role="button">Actors</a>
|
|
|
|
|
<a href="#" data-role="button">Directors</a>
|
|
|
|
|
</div>
|
2013-04-01 17:54:06 -07:00
|
|
|
|
<div class="viewSettings">
|
2013-04-01 20:28:20 -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>
|
2013-04-01 17:54:06 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div id="items"></div>
|
2013-03-31 22:08:29 -07:00
|
|
|
|
</div>
|
2013-04-01 20:28:20 -07:00
|
|
|
|
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-theme="b" data-position-fixed="true">
|
|
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
<div id="sortpanel">
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<h3>Sort By:</h3>
|
|
|
|
|
</legend>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName">
|
|
|
|
|
<label for="radioSortName">Name</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating">
|
|
|
|
|
<label for="radioCommunityRating">Community Rating</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated">
|
|
|
|
|
<label for="radioDateCreated">Date Added</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioDatePlayed" value="off" data-sortby="DatePlayed">
|
|
|
|
|
<label for="radioDatePlayed">Date Played</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="PremiereDate">
|
|
|
|
|
<label for="radioPremiereDate">Date Released</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioPlayCount" value="off" data-sortby="PlayCount">
|
|
|
|
|
<label for="radioPlayCount">Play Count</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioRandom" value="off" data-sortby="Random">
|
|
|
|
|
<label for="radioRandom">Random</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioRuntime" value="off" data-sortby="Runtime">
|
|
|
|
|
<label for="radioRuntime">Runtime</label>
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<h3>Sort Order:</h3>
|
|
|
|
|
</legend>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortOrder" data-theme="c" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending">
|
|
|
|
|
<label for="radioAscending">Ascending</label>
|
|
|
|
|
|
|
|
|
|
<input class="radioSortOrder" data-theme="c" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending">
|
|
|
|
|
<label for="radioDescending">Descending</label>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</div>
|
|
|
|
|
</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-04 10:27:36 -07:00
|
|
|
|
<h3 onclick="Dashboard.selectDirectory();">Filters:</h3>
|
2013-04-01 20:28:20 -07:00
|
|
|
|
</legend>
|
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkPlayed" id="chkPlayed" data-theme="c" data-filter="IsPlayed">
|
|
|
|
|
<label for="chkPlayed">Played</label>
|
|
|
|
|
|
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkUnplayed" id="chkUnplayed" data-theme="c" data-filter="IsUnPlayed">
|
|
|
|
|
<label for="chkUnplayed">Unplayed</label>
|
|
|
|
|
|
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-theme="c" data-filter="IsFavorite">
|
|
|
|
|
<label for="chkIsFavorite">Favorite</label>
|
|
|
|
|
|
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-theme="c" data-filter="Likes">
|
|
|
|
|
<label for="chkLikes">Likes</label>
|
|
|
|
|
|
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-theme="c" data-filter="Dislikes">
|
|
|
|
|
<label for="chkDislikes">Dislikes</label>
|
|
|
|
|
|
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkResumable" id="chkResumable" data-theme="c" data-filter="IsResumable">
|
|
|
|
|
<label for="chkResumable">Resumable</label>
|
|
|
|
|
</fieldset>
|
2013-04-04 08:38:41 -07:00
|
|
|
|
<br />
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
</legend>
|
|
|
|
|
|
|
|
|
|
<input class="chkVideoTypeFilter" type="checkbox" name="chkBluray" id="chkBluray" data-theme="c" data-filter="Bluray">
|
|
|
|
|
<label for="chkBluray">Bluray</label>
|
|
|
|
|
|
|
|
|
|
<input class="chkVideoTypeFilter" type="checkbox" name="chkDvd" id="chkDvd" data-theme="c" data-filter="Dvd">
|
|
|
|
|
<label for="chkDvd">Dvd</label>
|
|
|
|
|
|
|
|
|
|
<input class="chkVideoTypeFilter" type="checkbox" name="chkIso" id="chkIso" data-theme="c" data-filter="Iso">
|
|
|
|
|
<label for="chkIso">Iso</label>
|
|
|
|
|
</fieldset>
|
2013-04-01 20:28:20 -07:00
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2013-03-31 22:08:29 -07:00
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|