jellyfish-web/src/components/itemidentifier/itemidentifier.template.html

55 lines
2.2 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">
2020-04-26 02:37:28 +03:00
<span class="material-icons arrow_back"></span>
2019-10-18 17:05:50 +03:00
</button>
<h3 class="formDialogHeaderTitle">${Identify}</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">
<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">
<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
<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>
2015-10-04 12:15:08 -04:00
<div class="identificationSearchResults hide">
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;">
<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">
<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>