2017-05-10 14:43:05 -04:00
|
|
|
{{#d-modal-body class='add-upload-modal' title="admin.customize.theme.add_upload"}}
|
2017-05-09 17:20:28 -04:00
|
|
|
<div class="inputs">
|
2018-11-21 16:50:49 -05:00
|
|
|
<section class="field">
|
|
|
|
<input onchange={{action "updateName"}} type="file" id="file-input" accept='*'>
|
|
|
|
<label for="file-input">{{i18n 'admin.customize.theme.upload_file_tip'}}</label>
|
|
|
|
</section>
|
|
|
|
<section class="field">
|
|
|
|
<label for="theme-variable-name">{{i18n 'admin.customize.theme.variable_name'}}</label>
|
|
|
|
{{input id="theme-variable-name" value=name}}
|
|
|
|
</section>
|
2018-03-07 15:37:22 -05:00
|
|
|
{{#if fileSelected}}
|
2018-05-09 05:54:43 -04:00
|
|
|
{{#if errorMessage}}
|
|
|
|
<span class="alert alert-error">{{errorMessage}}</span>
|
|
|
|
{{/if}}
|
2018-03-07 15:37:22 -05:00
|
|
|
{{/if}}
|
2017-05-09 17:20:28 -04:00
|
|
|
</div>
|
|
|
|
{{/d-modal-body}}
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
2019-01-10 05:06:01 -05:00
|
|
|
{{d-button action=(action "upload") disabled=disabled class='btn btn-primary' icon='upload' label='admin.customize.theme.upload'}}
|
|
|
|
{{d-modal-cancel close=(route-action "closeModal")}}
|
2017-05-09 17:20:28 -04:00
|
|
|
</div>
|