You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
1.4 KiB

<div class="js-new-storage-item new-storage-item storage-provider-wrapper">
<div class="storage-choice">
<div class="storage-item-settings">
<div class="js-new-storage-tabs">
{{#if storages.length}}
<div class="storage-logo-container">
{{#each storages}}
<div class="storage-logo" data-type="{{type}}">
<a href="#{{ type }}-new-item-content" class="storage-item-logo">
{{{ logo }}}
</a>
</div>
{{/each}}
</div>
<div class="tab-content">
{{#each storages}}
<div class="js-tab-content-item {{ type }} tab-content-item" data-type="{{ type }}" id="{{ type }}-new-item-content">
<form class="form-horizontal js-storage-settings-form">
{{{ formElements }}}
<label class="control-group">
<span class="control-label">{{ @root.i18n.storage.itemSettings.setDefaultLabel }}</span>
<div class="controls">
<input type="checkbox" checked="checked" value="" name="set_default" />
</div>
</label>
<div class="buttons-wrapper clearfix">
<button type="submit" class="btn btn-primary js-save" >
{{ @root.i18n.storage.newItem.saveNewItemText }}
</button>
<button type="button" class="btn js-cancel">
{{ @root.i18n.storage.newItem.cancelBtnText }}
</button>
</div>
</form>
</div>
{{/each}}
</div>
{{/if}}
</div>
</div>
</div>
</div>