mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 15:25:10 +08:00
15 lines
421 B
Handlebars
15 lines
421 B
Handlebars
{{#if field.value}}
|
|
{{component previewComponent field=field fieldClass=fieldClass}}
|
|
{{/if}}
|
|
|
|
<label class="wizard-btn wizard-btn-upload {{if uploading 'disabled'}}">
|
|
{{#if uploading}}
|
|
{{i18n "wizard.uploading"}}
|
|
{{else}}
|
|
{{i18n "wizard.upload"}}
|
|
{{fa-icon "picture-o"}}
|
|
{{/if}}
|
|
|
|
<input disabled={{uploading}} type="file" accept="image/*" style="visibility: hidden; position: absolute;" />
|
|
</label>
|