discourse/app/assets/javascripts/wizard/templates/components/wizard-step.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.8 KiB
Handlebars
Raw Normal View History

<div class="wizard-step-contents">
{{#if step.title}}
<h1 class="wizard-step-title">{{step.title}}</h1>
{{/if}}
<div class={{bannerAndDescriptionClass}}>
{{#if bannerImage}}
<img src={{bannerImage}} class="wizard-step-banner">
{{/if}}
{{#if step.description}}
<p class="wizard-step-description">{{html-safe step.description}}</p>
{{/if}}
</div>
{{#wizard-step-form step=step}}
{{#each step.fields as |field|}}
2016-09-17 04:12:56 +08:00
{{wizard-field field=field step=step wizard=wizard}}
{{/each}}
{{/wizard-step-form}}
</div>
2016-08-26 01:14:56 +08:00
<div class="wizard-step-footer">
2016-09-21 02:04:18 +08:00
2016-08-26 01:14:56 +08:00
<div class="wizard-progress">
2016-09-21 02:04:18 +08:00
<div class="white"></div>
<div style={{barStyle}} class="black"></div>
<div class="screen"></div>
<span>{{bound-i18n "wizard.step" current=step.displayIndex total=wizard.totalSteps}}</span>
2016-08-26 01:14:56 +08:00
</div>
<div class="wizard-buttons">
{{#if showQuitButton}}
<a href {{action "quit"}} tabindex="11" class="action-link quit">{{i18n "wizard.quit"}}</a>
{{/if}}
{{#if showFinishButton}}
<button {{action "exitEarly"}} disabled={{saving}} tabindex="10" type="button" class="wizard-btn finish">
{{i18n "wizard.finish"}}
</button>
{{/if}}
{{#if showBackButton}}
<a href {{action "backStep"}} tabindex="11" class="action-link back">{{i18n "wizard.back"}}</a>
{{/if}}
2016-08-26 01:14:56 +08:00
{{#if showNextButton}}
<button {{action "nextStep"}} disabled={{saving}} tabindex="10" type="button" class="wizard-btn next primary">
{{i18n "wizard.next"}}
{{d-icon "chevron-right"}}
</button>
{{/if}}
{{#if showDoneButton}}
<button {{action "quit"}} disabled={{saving}} tabindex="10" type="button" class="wizard-btn done">
{{i18n "wizard.done"}}
</button>
{{/if}}
</div>
2016-08-26 01:14:56 +08:00
</div>