2021-04-12 19:49:53 +05:30
|
|
|
<label class="wizard-btn wizard-btn-upload-file {{if uploading "disabled"}}" tabindex={{field.tabindex}}>
|
2018-09-09 08:03:46 -05:00
|
|
|
{{#if uploading}}
|
2020-11-26 16:45:30 +11:00
|
|
|
{{wizard-i18n "wizard.uploading"}}
|
2018-09-09 08:03:46 -05:00
|
|
|
{{else}}
|
2020-11-26 16:45:30 +11:00
|
|
|
{{wizard-i18n "wizard.upload"}}
|
2018-09-15 16:21:02 +10:00
|
|
|
{{d-icon "upload"}}
|
2018-09-09 08:03:46 -05:00
|
|
|
{{/if}}
|
|
|
|
|
2021-04-12 19:49:53 +05:30
|
|
|
<input disabled={{uploading}} type="file" accept={{field.file_types}} style="visibility: hidden; position: absolute;" >
|
2018-09-09 08:03:46 -05:00
|
|
|
</label>
|
2018-09-15 16:21:02 +10:00
|
|
|
|
|
|
|
{{#if field.value}}
|
2021-04-12 19:49:53 +05:30
|
|
|
{{#if isImage}}
|
2020-05-04 18:09:18 +10:00
|
|
|
<img src={{field.value.url}} class="wizard-image-preview">
|
2021-04-12 19:49:53 +05:30
|
|
|
{{else}}
|
|
|
|
{{field.value.original_filename}}
|
|
|
|
{{/if}}
|
2018-09-15 16:21:02 +10:00
|
|
|
{{/if}}
|