1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/components/itemidentifier/itemidentifier.template.html

62 lines
2.3 KiB
HTML
Raw Normal View History

2019-01-23 11:33:34 +00:00
<div class="formDialogHeader">
2019-10-18 17:05:50 +03:00
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1">
<i class="md-icon">arrow_back</i>
2019-10-18 17:05:50 +03:00
</button>
2016-09-09 02:59:23 -04:00
<h3 class="formDialogHeaderTitle">
2016-07-31 00:57:54 -04:00
${Identify}
2016-09-09 02:59:23 -04:00
</h3>
2015-12-15 15:10:41 -05:00
</div>
2016-08-07 02:15:03 -04:00
<div class="formDialogContent smoothScrollY">
2016-08-04 19:48:54 -04:00
<div class="dialogContentInner dialog-content-centered">
2016-07-31 00:57:54 -04:00
<form class="popupIdentifyForm" style="margin:auto;">
2015-10-04 12:15:08 -04:00
2019-10-25 18:47:25 +03:00
<p>${HeaderIdentifyItemHelp}</p>
2019-10-18 17:05:50 +03:00
<div class="padded-bottom fldPath hide">
<div>${LabelPath}</div>
2019-10-25 18:47:25 +03:00
<div class="txtPath fieldDescription"></div>
2019-10-18 17:05:50 +03:00
</div>
2016-07-31 00:57:54 -04:00
<div class="inputContainer">
2019-10-18 17:05:50 +03:00
<input is="emby-input" type="text" id="txtLookupName" class="identifyField" data-lookup="Name"
label="${LabelName}" />
2016-07-31 00:57:54 -04:00
</div>
<div class="fldLookupYear inputContainer">
2019-10-18 17:05:50 +03:00
<input is="emby-input" type="number" id="txtLookupYear" class="identifyField" data-lookup="Year"
pattern="[0-9]*" min="1800" label="${LabelYear}" />
2016-07-31 00:57:54 -04:00
</div>
2015-10-04 12:15:08 -04:00
2016-07-31 00:57:54 -04:00
<div class="identifyProviderIds">
</div>
2015-10-04 12:15:08 -04:00
2016-09-07 01:48:14 -04:00
<div class="formDialogFooter">
2016-09-09 02:59:23 -04:00
<button is="emby-button" type="submit" class="raised button-submit block formDialogFooterItem">
2016-07-31 00:57:54 -04:00
<span>${Search}</span>
</button>
2016-09-07 01:48:14 -04:00
</div>
2016-07-31 00:57:54 -04:00
</form>
2016-07-31 01:25:54 -04:00
<div class="identificationSearchResults hide">
2015-10-04 12:15:08 -04:00
2016-07-31 01:25:54 -04:00
<h1>${SearchResults}</h1>
2016-07-31 02:21:49 -04:00
<div class="identificationSearchResultList itemsContainer vertical-wrap"></div>
2016-07-31 00:57:54 -04:00
</div>
2015-10-04 12:15:08 -04:00
2016-07-31 00:57:54 -04:00
<form class="identifyOptionsForm hide" style="margin:auto;">
2015-10-04 12:15:08 -04:00
2016-07-31 00:57:54 -04:00
<br />
<div class="selectedSearchResult"></div>
<br />
<label class="checkboxContainer">
<input type="checkbox" is="emby-checkbox" id="chkIdentifyReplaceImages" />
<span>${ReplaceExistingImages}</span>
</label>
2016-09-07 01:48:14 -04:00
<div class="formDialogFooter">
2019-10-18 17:05:50 +03:00
<button is="emby-button" type="submit"
class="raised button-submit block btnSubmit formDialogFooterItem">
2016-09-07 01:48:14 -04:00
<span>${ButtonOk}</span>
</button>
</div>
2016-07-31 00:57:54 -04:00
</form>
</div>
2019-10-18 17:05:50 +03:00
</div>