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

20 Zeilen
441 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")
2023-07-10 07:55:54 +01:00
options=(hash none="admin.wizard.select")
}}
2021-04-12 19:49:53 +05:30
2020-04-13 22:17:22 +10:00
{{d-button
2022-04-04 15:07:17 +02:00
action=(route-action "createWizard")
2020-04-13 22:17:22 +10:00
label="admin.wizard.create"
2023-07-10 07:55:54 +01:00
icon="plus"
}}
2020-04-13 22:17:22 +10:00
</div>
2023-07-10 07:55:54 +01:00
{{wizard-message key=messageKey url=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>