mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:43:45 +08:00
371bbadb92
* Run no-implicit-this codemod for app templates * Run tagless-ember-components-codemod for plugins * Turn on no-implicit-this lint
41 lines
1.3 KiB
Handlebars
41 lines
1.3 KiB
Handlebars
<DModalBody @title="admin.reseed.modal.title" @subtitle="admin.reseed.modal.subtitle" @class="reseed-modal">
|
|
<ConditionalLoadingSpinner @condition={{this.loading}}>
|
|
{{#if this.categories}}
|
|
<fieldset>
|
|
<legend class="options-group-title">{{i18n "admin.reseed.modal.categories"}}</legend>
|
|
|
|
{{#each this.categories as |category|}}
|
|
<label>
|
|
<Input class="option" @type="checkbox" @checked={{category.selected}} />
|
|
<span>{{category.name}}</span>
|
|
</label>
|
|
{{/each}}
|
|
</fieldset>
|
|
{{/if}}
|
|
|
|
<br>
|
|
|
|
{{#if this.topics}}
|
|
<fieldset>
|
|
<legend class="options-group-title">{{i18n "admin.reseed.modal.topics"}}</legend>
|
|
|
|
{{#each this.topics as |topic|}}
|
|
<label>
|
|
<Input class="option" @type="checkbox" @checked={{topic.selected}} />
|
|
<span>{{topic.name}}</span>
|
|
</label>
|
|
{{/each}}
|
|
</fieldset>
|
|
{{/if}}
|
|
</ConditionalLoadingSpinner>
|
|
</DModalBody>
|
|
|
|
<div class="modal-footer">
|
|
<ConditionalLoadingSpinner @condition={{this.reseeding}} @size="small" />
|
|
<DButton @action={{action "reseed"}} @class="btn-danger" @label="admin.reseed.modal.replace" @disabled={{this.reseeding}} />
|
|
|
|
{{#unless this.reseeding}}
|
|
<DModalCancel @close={{route-action "closeModal"}} />
|
|
{{/unless}}
|
|
</div>
|