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

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