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

45 lines
2 KiB
HTML
Raw Normal View History

2016-08-07 02:15:03 -04:00
<div class="formDialogHeader">
2017-03-25 17:32:04 -04:00
<button type="button" is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon">&#xE5C4;</i></button>
2016-09-09 02:59:23 -04:00
<h3 class="formDialogHeaderTitle">
2016-03-06 13:09:20 -05:00
${ButtonAddMediaLibrary}
2016-09-09 02:59:23 -04:00
</h3>
2016-03-06 13:09:20 -05:00
</div>
2017-11-27 15:14:43 -05:00
<div class="formDialogContent scrollY" style="padding-top:2em;">
2016-08-05 16:34:56 -04:00
<div class="dialogContentInner dialog-content-centered">
<form style="margin:auto;">
2018-09-12 19:26:21 +02:00
<div class="inputContainer" style="text-align:right;">
<label style="width:auto;">
<input is="emby-toggle" type="checkbox" class="chkAdvanced noautofocus" />
<span>${ShowAdvancedSettings}</span>
</label>
</div>
2016-08-05 16:34:56 -04:00
<div id="fldCollectionType" class="selectContainer">
<select is="emby-select" id="selectCollectionType" data-mini="true" required="required" label="${LabelContentType}"></select>
<div class="collectionTypeFieldDescription fieldDescription">
</div>
</div>
<div class="inputContainer">
2018-09-12 19:26:21 +02:00
<input is="emby-input" type="text" id="txtValue" required="required" label="${LabelDisplayName}" />
2016-08-05 16:34:56 -04:00
</div>
2016-08-13 02:33:31 -04:00
<div style="display: flex; align-items: center;">
2018-09-12 19:26:21 +02:00
<h1 style="margin: .5em 0;">${HeadersFolders}</h1>
<button is="emby-button" type="button" class="fab btnAddFolder submit" style="margin-left:1em;" title="${ButtonAdd}">
2016-08-05 16:34:56 -04:00
<i class="md-icon">add</i>
</button>
</div>
2018-09-12 19:26:21 +02:00
<div class="paperList folderList hide" style="margin-bottom:2em;"></div>
2015-10-26 01:29:32 -04:00
2016-08-13 02:33:31 -04:00
<div class="libraryOptions"></div>
2016-08-05 16:34:56 -04:00
<br />
2016-09-07 13:17:26 -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-08-05 16:34:56 -04:00
<span>${ButtonOk}</span>
</button>
</div>
</form>
2015-10-15 14:48:43 -04:00
</div>
2016-08-05 16:34:56 -04:00
</div>