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