0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/templates/admin-wizards-wizard.hbs

24 Zeilen
438 B
Handlebars

2020-04-13 14:17:22 +02:00
<div class="admin-wizard-controls">
{{combo-box
value=wizardListVal
content=wizardList
2021-04-12 16:19:53 +02:00
onChange=(route-action "changeWizard")
2020-04-13 14:17:22 +02:00
options=(hash
2021-04-12 16:19:53 +02:00
none="admin.wizard.select"
2020-04-13 14:17:22 +02:00
)}}
2021-04-12 16:19:53 +02:00
2020-04-13 14:17:22 +02:00
{{d-button
action="createWizard"
label="admin.wizard.create"
icon="plus"}}
</div>
2020-04-20 13:40:32 +02:00
{{wizard-message
key=messageKey
url=messageUrl
2021-04-12 16:19:53 +02:00
component="wizard"}}
2020-04-13 14:17:22 +02:00
<div class="admin-wizard-container settings">
{{outlet}}
2021-04-12 16:19:53 +02:00
</div>