{{#each option in options}} {{/each}} {{! ToDo: should be all together in just one form; not in several forms for each input. This work-around is due to a problem of ember-forms in dealing with propertys of handlebar each helper }} {{#each newUserSelection in controller.newUserSelections}} {{/each}} {{#each user in users}} {{#each selection in user.selections}} {{/each}} {{/each}} {{#unless isFreeText}} {{#each answer in evaluation}} {{#each option in answer.options}} {{/each}} {{/each}} {{/unless}}
  {{#if isFindADate}} {{#if isDateTime}} {{formattedDate option.title 'llll'}} {{else}} {{formattedDate option.title 'll'}} {{/if}} {{/if}} {{#if isMakeAPoll}} {{option.title}} {{/if}}  
{{#em-form model=controller submit_button=false}} {{em-form-label text="name" extraClass="sr-only"}} {{em-input property="newUserName" placeholder="Enter your name..."}} {{/em-form}} {{#em-form model=newUserSelection submit_button=false}} {{#if isFreeText}} {{em-input property="value"}} {{else}} {{#each answer in answers}}
{{/each}} {{/if}} {{/em-form}}
{{user.name}} {{#if isFreeText}} {{selection.value}} {{else}} {{selection.value.label}} {{/if}}  
{{t "poll.evaluation.label"}}
{{answer.label}} {{option}}