Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
21 Zeilen
Kein EOL
483 B
Handlebars
21 Zeilen
Kein EOL
483 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"}}>
|
|
{{i18n "wizard.reset"}}
|
|
</a>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if step.permitted}}
|
|
{{custom-wizard-step
|
|
step=step
|
|
wizard=wizard
|
|
goNext=(action "goNext")
|
|
goBack=(action "goBack")
|
|
showMessage=(action "showMessage")
|
|
}}
|
|
{{/if}} |