mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
15 lines
421 B
Handlebars
15 lines
421 B
Handlebars
{{#if field.value}}
|
|
{{component previewComponent field=field fieldClass=fieldClass wizard=wizard}}
|
|
{{/if}}
|
|
|
|
<label class="wizard-btn wizard-btn-upload {{if uploading 'disabled'}}">
|
|
{{#if uploading}}
|
|
{{i18n "wizard.uploading"}}
|
|
{{else}}
|
|
{{i18n "wizard.upload"}}
|
|
{{d-icon "far-image"}}
|
|
{{/if}}
|
|
|
|
<input class="wizard-hidden-upload-field" disabled={{uploading}} type="file" accept="image/*" />
|
|
</label>
|