1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/advancedmetadata.html

51 lines
2.5 KiB
HTML
Raw Normal View History

2013-02-20 20:33:05 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Metadata</title>
</head>
<body>
<div id="advancedMetadataConfigurationPage" data-role="page" class="page type-interior">
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
<a href="metadata.html" data-role="button">Basics</a>
2013-12-17 23:39:44 -05:00
<a href="metadataimages.html" data-role="button">Image Downloading</a>
<a href="metadataimageextraction.html" data-role="button">Image Extraction</a>
2013-03-28 20:10:15 -04:00
<a href="advancedmetadata.html" data-role="button" class="ui-btn-active">Advanced</a>
2013-02-20 20:33:05 -05:00
</div>
<form id="advancedMetadataConfigurationForm">
<ul data-role="listview" class="ulForm">
<li>
2013-12-17 23:39:44 -05:00
<input type="checkbox" id="chkEnableTmdbPersonUpdates" name="chkEnableTmdbPersonUpdates" data-mini="true" />
<label for="chkEnableTmdbPersonUpdates">Enable automatic updates from TheMovieDB.org</label>
<div class="fieldDescription">If enabled, movies and people will be updated automatically as they are updated on the TheMovieDB.org.</div>
2013-02-20 20:33:05 -05:00
</li>
2013-04-17 00:58:32 -04:00
<li>
2013-12-17 23:39:44 -05:00
<input type="checkbox" id="chkEnableTvdbUpdates" name="chkEnableTvdbUpdates" data-mini="true" />
<label for="chkEnableTvdbUpdates">Enable automatic updates from TheTVDB.com</label>
<div class="fieldDescription">If enabled, tv series and episodes will be updated automatically as they are updated on the TheTVDB.com.</div>
</li>
<li>
<button type="submit" data-theme="b" data-icon="ok" data-mini="true">
2013-02-20 20:33:05 -05:00
Save
</button>
2013-12-17 23:39:44 -05:00
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
2013-04-17 00:58:32 -04:00
Cancel
</button>
2013-02-20 20:33:05 -05:00
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('#advancedMetadataConfigurationForm').on('submit', AdvancedMetadataConfigurationPage.onSubmit);
</script>
</div>
</body>
</html>