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

24 Zeilen
438 B
Handlebars

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