mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 06:23:39 +08:00
5c652dd7a1
<img width="728" alt="Screenshot 2023-08-24 at 1 35 53 PM" src="https://github.com/discourse/discourse/assets/50783505/5532eea4-1238-43dc-b2b7-a511e78d1f97">
59 lines
1.5 KiB
Handlebars
59 lines
1.5 KiB
Handlebars
<DModal
|
|
@closeModal={{@closeModal}}
|
|
@title={{i18n "admin.reseed.modal.title"}}
|
|
@subtitle={{i18n "admin.reseed.modal.subtitle"}}
|
|
class="reseed-modal"
|
|
@flash={{this.flash}}
|
|
>
|
|
<:body>
|
|
<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>
|
|
</:body>
|
|
<:footer>
|
|
<DButton
|
|
@action={{this.reseed}}
|
|
@label="admin.reseed.modal.replace"
|
|
@isLoading={{this.reseeding}}
|
|
class="btn-danger"
|
|
/>
|
|
|
|
{{#unless this.reseeding}}
|
|
<DModalCancel @close={{@closeModal}} />
|
|
{{/unless}}
|
|
</:footer>
|
|
</DModal> |