Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
18 Zeilen
548 B
Handlebars
18 Zeilen
548 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}} 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}}
|