jellyfin-web/dashboard-ui/library.html

72 lines
3.1 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
2013-02-20 18:33:05 -07:00
<head>
2014-04-07 21:17:18 -07:00
<title>${TitleMediaLibrary}</title>
2013-02-20 18:33:05 -07:00
</head>
<body>
<div id="mediaLibraryPage" data-role="page" class="page type-interior mediaLibraryPage">
<div data-role="content">
<div class="content-primary">
2013-12-25 20:44:26 -07:00
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-07 21:17:18 -07:00
<a href="#" data-role="button" class="ui-btn-active">${TabFolders}</a>
<a href="librarypathmapping.html" data-role="button">${TabPathSubstitution}</a>
2014-04-03 15:50:04 -07:00
<a href="librarysettings.html" data-role="button">${TabAdvanced}</a>
2013-05-21 13:36:26 -07:00
</div>
2013-02-20 18:33:05 -07:00
<div class="readOnlyContent">
2014-04-07 21:17:18 -07:00
<p style="margin: 2em 0;"><a href="https://github.com/MediaBrowser/MediaBrowser/wiki/Library-Structure" target="_blank">${ReferToMediaLibraryWiki}</a></p>
2013-02-20 18:33:05 -07:00
<div id="divMediaLibrary">
<p>
<button type="button" data-mini="true" data-icon="plus" data-iconpos="right" onclick="MediaLibraryPage.addVirtualFolder();">${ButtonAddMediaFolder}</button>
2013-02-20 18:33:05 -07:00
</p>
<div id="divVirtualFolders"></div>
</div>
<br />
<div class="readOnlyContent refreshLibraryPanel hide">
2014-04-07 21:17:18 -07:00
<button type="button" class="btnRefresh" data-icon="refresh" data-mini="true">${ButtonScanLibrary}</button>
<progress max="100" min="0" style="width: 100%;" class="refreshProgress"></progress>
2014-05-09 12:43:06 -07:00
<div style="margin-top: 5px;">${LabelLastResult} <span class="lastRefreshResult"></span></div>
</div>
2013-02-20 18:33:05 -07:00
</div>
</div>
</div>
2014-06-28 12:35:30 -07:00
<div data-role="popup" id="popupEnterText" class="popup">
2013-02-20 18:33:05 -07:00
2013-12-24 11:37:29 -07:00
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
2014-04-07 21:17:18 -07:00
<h3></h3>
2013-02-20 18:33:05 -07:00
</div>
2013-12-24 11:37:29 -07:00
<div data-role="content">
2013-02-20 18:33:05 -07:00
<form id="textEntryForm">
2013-07-12 12:56:40 -07:00
<p>
2014-04-07 21:17:18 -07:00
<label id="lblValue" for="txtValue"></label>
2013-07-12 12:56:40 -07:00
<input type="text" name="txtValue" id="txtValue" required="required" />
</p>
<p id="fldCollectionType">
2014-04-07 21:17:18 -07:00
<label for="selectCollectionType">${LabelFolderType}</label>
2013-07-12 12:56:40 -07:00
<select id="selectCollectionType" name="selectCollectionType"></select>
</p>
<p class="collectionTypeFieldDescription">
2014-04-07 21:17:18 -07:00
${MediaFolderHelpPluginRequired}
2013-07-12 12:56:40 -07:00
</p>
2013-02-20 18:33:05 -07:00
<p>
2013-12-24 11:37:29 -07:00
<button type="submit" data-theme="b" data-icon="check">
2014-04-07 21:17:18 -07:00
${ButtonOk}
2013-02-20 18:33:05 -07:00
</button>
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');">
2014-04-07 21:17:18 -07:00
${ButtonCancel}
2013-02-20 18:33:05 -07:00
</button>
</p>
</form>
</div>
</div>
</div>
</body>
</html>