mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:24:34 +08:00
c3fd91670e
Re-lands #16119 and #17298 * Update eslint-config-discourse * Update linting workflow * Prettier-ignore stuff * Update template-lint config * Auto-fix template issues * Fix various template issues Mostly incorrect attributes and unused templates * Prettier js files * Fix template auto-fix regressions * Small css tweak Co-authored-by: Peter Wagenet <peter.wagenet@gmail.com>
23 lines
938 B
Handlebars
23 lines
938 B
Handlebars
<DModalBody @class="add-upload-modal" @title="admin.customize.theme.add_upload">
|
|
<div class="inputs">
|
|
<section class="field">
|
|
<input onchange={{action "updateName"}} type="file" id="file-input" accept="*">
|
|
<label for="file-input">{{i18n "admin.customize.theme.upload_file_tip"}}</label>
|
|
</section>
|
|
<section class="field">
|
|
<label for="theme-variable-name">{{i18n "admin.customize.theme.variable_name"}}</label>
|
|
<Input id="theme-variable-name" @value={{this.name}} />
|
|
</section>
|
|
{{#if this.fileSelected}}
|
|
{{#if this.errorMessage}}
|
|
<span class="alert alert-error">{{this.errorMessage}}</span>
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
</DModalBody>
|
|
|
|
<div class="modal-footer">
|
|
<DButton @action={{action "upload"}} @disabled={{this.disabled}} @class="btn btn-primary" @icon="upload" @label="admin.customize.theme.upload" />
|
|
<DModalCancel @close={{route-action "closeModal"}} />
|
|
</div>
|