jelhan/croodle

View on GitHub
app/templates/poll/evaluation.hbs

Summary

Maintainability
Test Coverage
{{#let @model as |poll|}}
  {{#if this.isEvaluable}}
    <PollEvaluationSummary
      @poll={{poll}}
      @timeZone={{this.pollController.timezone}}
    />
  {{/if}}

  <h3>{{t "poll.evaluation.participantTable"}}</h3>
  <PollEvaluationParticipantsTable
    @poll={{poll}}
    @timeZone={{this.pollController.timezone}}
  />
{{/let}}