0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-24 10:20:28 +01:00
discourse-custom-wizard/assets/javascripts/discourse/templates/admin-wizards-wizard.hbs

23 Zeilen
493 B
Handlebars

2020-04-13 14:17:22 +02:00
<div class="admin-wizard-controls">
2024-11-22 16:45:50 +01:00
<ComboBox
@value={{this.wizardListVal}}
@content={{this.wizardList}}
@onChange={{route-action "changeWizard"}}
@options={{hash none="admin.wizard.select"}}
/>
<DButton
@action={{route-action "createWizard"}}
@label="admin.wizard.create"
@icon="plus"
/>
2020-04-13 14:17:22 +02:00
</div>
2024-11-22 16:45:50 +01:00
<WizardMessage
@key={{this.messageKey}}
@url={{this.messageUrl}}
@component="wizard"
/>
2020-04-13 14:17:22 +02:00
<div class="admin-wizard-container settings">
{{outlet}}
2023-07-10 08:55:54 +02:00
</div>