jellyfin-web/dashboard-ui/library.html
2013-07-20 16:37:00 -04:00

78 lines
4.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div id="mediaLibraryPage" data-role="page" class="page type-interior mediaLibraryPage">
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" id="userProfileNavigation" style="display: none;" data-mini="true">
<a href="#" data-role="button" onclick="Dashboard.navigate('edituser.html', true);">Profile</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userimage.html', true);">Image</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('updatepassword.html', true);">Password</a>
<a href="#" data-role="button" class="ui-btn-active">Media Library</a>
</div>
<div data-role="controlgroup" data-type="horizontal" class="localnav" id="defaultNavigation" style="display: none;" data-mini="true">
<a href="#" data-role="button" class="ui-btn-active">Media Collections</a>
<a href="librarysettings.html" data-role="button">Settings</a>
</div>
<div class="readOnlyContent">
<p id="fldUseDefaultLibrary" style="display: none;">
<input type="checkbox" id="chkUseDefaultLibrary" name="chkUseDefaultLibrary" onchange="MediaLibraryPage.setUseDefaultMediaLibrary(this.checked);" />
<label for="chkUseDefaultLibrary">Use default media library</label>
</p>
<div id="divMediaLibrary">
<p class="editing_default">This is the <strong>default media library</strong> that will be shared with all users unless individual libraries are created.</p>
<p>
<button type="button" data-icon="plus" onclick="MediaLibraryPage.addVirtualFolder();">Add media collection</button>
</p>
<div id="divVirtualFolders"></div>
</div>
</div>
<p>Read <a href="https://github.com/MediaBrowser/MediaBrowser/wiki/Library-Structure" target="_blank">media library wiki.</a></p>
<p>Configure <b>images</b> and <b>sort orders</b> by <a href="itemlist.html">browsing and editing.</a></p>
</div>
</div>
<div data-role="popup" id="popupEnterText" class="ui-corner-all popup">
<div class="ui-corner-top ui-bar-a" style="text-align: center; padding: 0 20px;">
<h3>Rename</h3>
</div>
<div data-role="content" class="ui-corner-bottom ui-content">
<form id="textEntryForm">
<p>
<label id="lblValue" for="txtValue">New name:</label>
<input type="text" name="txtValue" id="txtValue" required="required" />
</p>
<p id="fldCollectionType">
<label for="selectCollectionType">Collection type:</label>
<select id="selectCollectionType" name="selectCollectionType"></select>
</p>
<p class="fieldDescription">
Anything unlisted should be classified as general or mixed content.
</p>
<p class="fieldDescription">
* Requires the use of a plugin, e.g. GameBrowser or MB Photos.
</p>
<p>
<button type="submit" data-theme="b" data-icon="ok">
Ok
</button>
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');">
Cancel
</button>
</p>
</form>
</div>
</div>
</div>
</body>
</html>