jellyfin-web/dashboard-ui/metadata.html

70 lines
3.9 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
<head>
<title>Metadata</title>
</head>
<body>
<div id="metadataConfigurationPage" 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">
2013-12-25 23:17:19 -07:00
<a href="#" data-role="button" class="ui-btn-active">Basics</a>
2014-02-02 06:36:31 -07:00
<a href="metadataimages.html?type=movies" data-role="button">Movies</a>
<a href="metadataimages.html?type=tv" data-role="button">TV</a>
<a href="metadataimages.html?type=games" data-role="button">Games</a>
<a href="metadataimages.html?type=music" data-role="button">Music</a>
<a href="metadataimages.html?type=others" data-role="button">Others</a>
2013-12-25 23:17:19 -07:00
<a href="metadataadvanced.html" data-role="button">Advanced</a>
2013-02-20 18:33:05 -07:00
</div>
<form id="metadataConfigurationForm">
<ul data-role="listview" class="ulForm">
2014-02-26 20:57:37 -07:00
<li>
<input type="checkbox" id="chkEnableInternetProviders" name="chkEnableInternetProviders" data-mini="true" />
2014-03-05 22:17:13 -07:00
<label for="chkEnableInternetProviders">Download artwork and metadata from the internet </label>
<div class="fieldDescription">Media Browser can download information about your media to enable rich presentations.</div>
2014-02-26 20:57:37 -07:00
</li>
2013-02-20 18:33:05 -07:00
<li>
2013-12-14 18:17:57 -07:00
<input type="checkbox" id="chkSaveLocal" name="chkSaveLocal" data-mini="true" />
2014-03-05 22:17:13 -07:00
<label for="chkSaveLocal">Save artwork and metadata within media folders </label>
2014-02-26 20:57:37 -07:00
<div class="fieldDescription">Save downloaded metadata and images into media folders where they can be stored permanently and easily edited.</div>
2013-02-20 18:33:05 -07:00
</li>
2014-02-02 06:36:31 -07:00
<li>
<label for="selectImageSavingConvention">Image saving convention: </label>
<select name="selectImageSavingConvention" id="selectImageSavingConvention" data-mini="true">
<option value="Compatible">Compatible - MB3/Plex/Xbmc</option>
<option value="Legacy">Standard - MB3/MB2</option>
</select>
<div class="fieldDescription">Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.</div>
</li>
2013-02-20 18:33:05 -07:00
<li>
<label for="selectLanguage">Preferred language: </label>
2013-12-22 20:46:03 -07:00
<select name="selectLanguage" id="selectLanguage" data-mini="true" required="required"></select>
2013-02-20 18:33:05 -07:00
</li>
<li>
<label for="selectCountry">Country: </label>
2013-12-22 20:46:03 -07:00
<select name="selectCountry" id="selectCountry" data-mini="true" required="required"></select>
2013-02-20 18:33:05 -07:00
</li>
2013-04-16 21:58:32 -07:00
<li>
2013-12-24 11:37:29 -07:00
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
2013-02-20 18:33:05 -07:00
Save
</button>
2013-12-14 18:17:57 -07:00
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
2013-04-16 21:58:32 -07:00
Cancel
</button>
2013-02-20 18:33:05 -07:00
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('#metadataConfigurationForm').on('submit', MetadataConfigurationPage.onSubmit);
</script>
</div>
</body>
</html>