0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-24 10:20:28 +01:00
discourse-custom-wizard/assets/javascripts/discourse/templates/custom-wizard-step.hbs

21 Zeilen
518 B
Handlebars

2024-11-22 16:45:50 +01:00
{{#if this.stepMessage}}
<div class="step-message {{this.stepMessage.state}}">
2019-07-31 04:31:15 +02:00
<div class="text">
2024-11-22 16:45:50 +01:00
{{this.stepMessage.text}}
2019-07-31 04:31:15 +02:00
</div>
2024-11-22 16:45:50 +01:00
{{#if this.showReset}}
2021-04-12 16:19:53 +02:00
<a role="button" class="reset-wizard" {{action "resetWizard"}}>
{{i18n "wizard.reset"}}
2019-07-31 04:31:15 +02:00
</a>
{{/if}}
2019-07-27 09:01:29 +02:00
</div>
2019-07-31 04:31:15 +02:00
{{/if}}
2024-11-22 16:45:50 +01:00
{{#if this.step.permitted}}
{{custom-wizard-step
2024-11-22 16:45:50 +01:00
step=this.step
wizard=this.wizard
goNext=(action "goNext")
goBack=(action "goBack")
2023-07-10 08:55:54 +02:00
showMessage=(action "showMessage")
}}
{{/if}}