wizard-step.hbs 1.7 KB

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