wizard-step.hbs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <div class='wizard-step-contents'>
  2. {{#if step.title}}
  3. <h1 class='wizard-step-title'>{{step.title}}</h1>
  4. {{/if}}
  5. {{#if step.description}}
  6. <div class='wizard-step-description'>{{cookedDescription}}</div>
  7. {{/if}}
  8. {{#if bannerImage}}
  9. <div class="wizard-step-banner">
  10. <img src={{bannerImage}}>
  11. </div>
  12. {{/if}}
  13. {{#wizard-step-form step=step}}
  14. {{#each step.fields as |field|}}
  15. {{wizard-field field=field step=step wizard=wizard}}
  16. {{/each}}
  17. {{/wizard-step-form}}
  18. </div>
  19. <div class='wizard-step-footer'>
  20. <div class='wizard-progress'>
  21. <div class='white'></div>
  22. <div class='black' style={{barStyle}}></div>
  23. <div class='screen'></div>
  24. <span>{{bound-i18n "wizard.step" current=step.displayIndex total=wizard.totalSteps}}</span>
  25. </div>
  26. <div class='wizard-buttons'>
  27. {{#if saving}}
  28. {{loading-spinner size='small'}}
  29. {{else}}
  30. {{#if showQuitButton}}
  31. <a href {{action "quit"}} class='action-link quit' tabindex="11">{{i18n "wizard.quit"}}</a>
  32. {{/if}}
  33. {{#if showBackButton}}
  34. <a href {{action "backStep"}} class='action-link back' tabindex="11">{{i18n "wizard.back"}}</a>
  35. {{/if}}
  36. {{/if}}
  37. {{#if showNextButton}}
  38. <button class='wizard-btn next primary' {{action "nextStep"}} disabled={{saving}} tabindex="10">
  39. {{i18n "wizard.next"}}
  40. {{d-icon "chevron-right"}}
  41. </button>
  42. {{/if}}
  43. {{#if showDoneButton}}
  44. <button class='wizard-btn done' {{action "done"}} disabled={{saving}} tabindex="10">
  45. {{i18n "wizard.done"}}
  46. </button>
  47. {{/if}}
  48. </div>
  49. </div>