Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
517da30a4c
* Move from jquery uploads to uppy.js * Apply prettier and update version
18 Zeilen
576 B
Handlebars
18 Zeilen
576 B
Handlebars
<label class="wizard-btn wizard-btn-upload-file {{if uploading "disabled"}}" tabindex={{field.tabindex}}>
|
|
{{#if uploading}}
|
|
{{wizard-i18n "wizard.uploading"}}
|
|
{{else}}
|
|
{{wizard-i18n "wizard.upload"}}
|
|
{{d-icon "upload"}}
|
|
{{/if}}
|
|
|
|
<input disabled={{uploading}} class="hidden-upload-field" type="file" accept={{field.file_types}} style="visibility: hidden; position: absolute;" >
|
|
</label>
|
|
|
|
{{#if field.value}}
|
|
{{#if isImage}}
|
|
<img src={{field.value.url}} class="wizard-image-preview">
|
|
{{else}}
|
|
{{field.value.original_filename}}
|
|
{{/if}}
|
|
{{/if}}
|