jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html

51 lines
1.9 KiB
HTML
Raw Normal View History

2016-07-30 21:57:54 -07:00
<div class="dialogHeader">
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon">&#xE5C4;</i></button>
2015-12-15 13:10:41 -07:00
<div class="dialogHeaderTitle">
2016-07-30 21:57:54 -07:00
${Identify}
2015-12-15 13:10:41 -07:00
</div>
</div>
2016-07-30 21:57:54 -07:00
<div class="dialogContent smoothScrollY">
<div class="dialogContentInner centeredContent">
<form class="popupIdentifyForm" style="margin:auto;">
2015-10-04 09:15:08 -07:00
2016-07-30 21:57:54 -07:00
<p>${HeaderIdentifyItemHelp}</p>
<div class="inputContainer">
<input is="emby-input" type="text" id="txtLookupName" class="identifyField" data-lookup="Name" label="${LabelName}" />
</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}" />
</div>
2015-10-04 09:15:08 -07:00
2016-07-30 21:57:54 -07:00
<div class="identifyProviderIds">
</div>
2015-10-04 09:15:08 -07:00
2016-07-30 21:57:54 -07:00
<p>
<button is="emby-button" type="submit" class="raised submit block">
<i class="md-icon">search</i>
<span>${Search}</span>
</button>
</p>
</form>
2016-07-30 22:25:54 -07:00
<div class="identificationSearchResults hide">
2015-10-04 09:15:08 -07:00
2016-07-30 22:25:54 -07:00
<h1>${SearchResults}</h1>
2016-07-30 23:21:49 -07:00
<div class="identificationSearchResultList itemsContainer vertical-wrap"></div>
2016-07-30 21:57:54 -07:00
</div>
2015-10-04 09:15:08 -07:00
2016-07-30 21:57:54 -07:00
<form class="identifyOptionsForm hide" style="margin:auto;">
2015-10-04 09:15:08 -07:00
2016-07-30 21:57:54 -07:00
<br />
<div class="selectedSearchResult"></div>
<br />
<label class="checkboxContainer">
<input type="checkbox" is="emby-checkbox" id="chkIdentifyReplaceImages" />
<span>${ReplaceExistingImages}</span>
</label>
<button is="emby-button" type="submit" class="raised submit block btnSubmit">
<i class="md-icon">check</i>
<span>${ButtonOk}</span>
</button>
</form>
</div>
</div>