0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2025-02-02 11:27:01 +01:00
discourse-custom-wizard/assets/javascripts/discourse/templates/admin-wizards-wizard.hbs

23 Zeilen
493 B
Handlebars

2020-04-13 22:17:22 +10: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 22:17:22 +10:00
</div>
2024-11-22 16:45:50 +01:00
<WizardMessage
@key={{this.messageKey}}
@url={{this.messageUrl}}
@component="wizard"
/>
2020-04-13 22:17:22 +10:00
<div class="admin-wizard-container settings">
{{outlet}}
2023-07-10 07:55:54 +01:00
</div>