mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
51 lines
2.6 KiB
HTML
51 lines
2.6 KiB
HTML
<!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>
|
|
<a href="metadataimages.html" data-role="button">Image Downloading</a>
|
|
<a href="metadataimageextraction.html" data-role="button">Image Extraction</a>
|
|
<a href="advancedmetadata.html" data-role="button" class="ui-btn-active">Advanced</a>
|
|
</div>
|
|
|
|
<form id="advancedMetadataConfigurationForm">
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<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 will be updated automatically as they are updated on the TheMovieDB.org. This may replace some existing metadata.</div>
|
|
</li>
|
|
<li>
|
|
<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. This may replace some existing metadata.</div>
|
|
</li>
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="ok" data-mini="true">
|
|
Save
|
|
</button>
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
|
|
Cancel
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('#advancedMetadataConfigurationForm').on('submit', AdvancedMetadataConfigurationPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|