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