2013-05-21 13:36:26 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Media Library</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2013-12-26 11:46:38 -07:00
|
|
|
|
<div id="librarySettingsPage" data-role="page" class="page type-interior mediaLibraryPage">
|
2013-05-21 13:36:26 -07:00
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
2013-12-25 20:44:26 -07:00
|
|
|
|
<a href="library.html" data-role="button">Media</a>
|
2013-05-21 13:36:26 -07:00
|
|
|
|
<a href="#" data-role="button" class="ui-btn-active">Settings</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form id="librarySettingsForm">
|
|
|
|
|
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
2013-12-19 14:51:32 -07:00
|
|
|
|
<input type="checkbox" id="chkEnableCustomIBNPath" name="chkEnableCustomIBNPath" data-mini="true" />
|
2013-05-21 13:36:26 -07:00
|
|
|
|
<label for="chkEnableCustomIBNPath">Use custom images by name path</label>
|
|
|
|
|
<div class="fieldDescription">
|
|
|
|
|
This folder contains actor, artist, genre and studio images.
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li id="fieldEnterIBNPath" style="display: none;">
|
|
|
|
|
<label for="txtItemsByNamePath">Images by name path: </label>
|
|
|
|
|
<div style="display: inline-block; width: 92%;">
|
2013-12-19 14:51:32 -07:00
|
|
|
|
<input type="text" id="txtItemsByNamePath" name="txtItemsByNamePath" data-mini="true" />
|
2013-05-21 13:36:26 -07:00
|
|
|
|
</div>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<button id="btnSelectIBNPath" type="button" data-icon="search" data-iconpos="notext" data-inline="true">Select Directory</button>
|
2013-05-21 13:36:26 -07:00
|
|
|
|
<div class="fieldDescription">
|
|
|
|
|
Supply a custom path for images by name. MB server must have write access to this folder.
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
2013-05-24 08:01:53 -07:00
|
|
|
|
<li>
|
|
|
|
|
<label for="txtSeasonZeroName">Season 0 display name: </label>
|
2013-12-19 14:51:32 -07:00
|
|
|
|
<input type="text" id="txtSeasonZeroName" name="txtSeasonZeroName" required="required" data-mini="true" />
|
2013-05-24 08:01:53 -07:00
|
|
|
|
</li>
|
2013-05-21 13:36:26 -07:00
|
|
|
|
<li>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
2013-05-21 13:36:26 -07:00
|
|
|
|
Save
|
|
|
|
|
</button>
|
2013-12-19 14:51:32 -07:00
|
|
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
|
2013-05-21 13:36:26 -07:00
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('#librarySettingsForm').on('submit', LibrarySettingsPage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|