Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
20 Zeilen
584 B
Handlebars
20 Zeilen
584 B
Handlebars
<label class="wizard-btn wizard-btn-upload-file {{if uploading 'disabled'}}">
|
|
{{#if uploading}}
|
|
{{i18n "wizard.uploading"}}
|
|
{{else}}
|
|
{{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}}
|
|
<a href="{{field.value.url}}" class="filename">
|
|
{{#unless isImage}}
|
|
{{field.value.original_filename}}
|
|
{{else}}
|
|
<img src={{field.value.url}} class="wizard-image-preview">
|
|
{{/unless}}
|
|
</a>
|
|
{{/if}}
|