2013-05-21 16:36:26 -04:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Media Library</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2013-12-26 13:46:38 -05:00
|
|
|
|
<div id="librarySettingsPage" data-role="page" class="page type-interior mediaLibraryPage">
|
2013-05-21 16:36:26 -04:00
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
2014-02-21 00:04:11 -05:00
|
|
|
|
<a href="library.html" data-role="button">Folders</a>
|
2014-01-30 00:20:18 -05:00
|
|
|
|
<a href="librarypathmapping.html" data-role="button">Path Substitution</a>
|
2014-01-29 16:54:40 -05:00
|
|
|
|
<a href="#" data-role="button" class="ui-btn-active">Advanced</a>
|
2013-05-21 16:36:26 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form id="librarySettingsForm">
|
|
|
|
|
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
2014-01-29 15:30:26 -05:00
|
|
|
|
<li>
|
|
|
|
|
<input type="checkbox" id="chkEnableRealtimeMonitor" name="chkEnableRealtimeMonitor" />
|
|
|
|
|
<label for="chkEnableRealtimeMonitor">Enable real time monitoring</label>
|
|
|
|
|
<div class="fieldDescription">
|
|
|
|
|
Changes will be processed immediately, on supported file systems.
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
2013-05-24 11:01:53 -04:00
|
|
|
|
<li>
|
|
|
|
|
<label for="txtSeasonZeroName">Season 0 display name: </label>
|
2013-12-27 11:18:42 -05:00
|
|
|
|
<input type="text" id="txtSeasonZeroName" name="txtSeasonZeroName" required="required" />
|
2013-05-24 11:01:53 -04:00
|
|
|
|
</li>
|
2013-05-21 16:36:26 -04:00
|
|
|
|
<li>
|
2013-12-27 11:18:42 -05:00
|
|
|
|
<button type="submit" data-theme="b" data-icon="check">
|
2013-05-21 16:36:26 -04:00
|
|
|
|
Save
|
|
|
|
|
</button>
|
2013-12-27 11:18:42 -05:00
|
|
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
|
2013-05-21 16:36:26 -04:00
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('#librarySettingsForm').on('submit', LibrarySettingsPage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|