Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
20 Zeilen
543 B
Handlebars
20 Zeilen
543 B
Handlebars
{{#if stepMessage}}
|
|
<div class="step-message {{stepMessage.state}}">
|
|
<div class="text">
|
|
{{stepMessage.text}}
|
|
</div>
|
|
{{#if showReset}}
|
|
<a role="button" class="reset-wizard" {{action "resetWizard"}}>
|
|
{{wizard-i18n "wizard.reset"}}
|
|
</a>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if step.permitted}}
|
|
{{wizard-step step=step
|
|
wizard=wizard
|
|
goNext="goNext"
|
|
goBack=(action "goBack")
|
|
finished="finished"
|
|
showMessage="showMessage"}}
|
|
{{/if}}
|