2017-08-11 16:39:36 +02:00
|
|
|
{{!--
|
|
|
|
There must not be a line break between option text and "</strong>." cause otherwise
|
|
|
|
we will see a space between option string and following dot.
|
|
|
|
--}}
|
2016-06-20 20:48:48 +02:00
|
|
|
{{#if isFindADate}}
|
2017-08-11 16:39:36 +02:00
|
|
|
<strong class='best-option-value'>{{moment-format
|
|
|
|
evaluationBestOption.option.title
|
|
|
|
(if evaluationBestOption.option.hasTime 'LLLL' momentLongDayFormat)
|
|
|
|
locale=currentLocale
|
|
|
|
timeZone=timezone
|
|
|
|
}}</strong>.
|
2016-06-20 20:48:48 +02:00
|
|
|
{{else}}
|
2017-08-11 16:39:36 +02:00
|
|
|
<strong class='best-option-value'>{{evaluationBestOption.option.title}}</strong>.
|
2016-06-20 20:48:48 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2017-08-11 16:39:36 +02:00
|
|
|
|
2016-06-20 20:48:48 +02:00
|
|
|
<br/>
|
|
|
|
|
|
|
|
{{#if isFindADate}}
|
|
|
|
{{#if evaluationBestOption.answers.yes}}
|
|
|
|
{{t "poll.evaluation.bestOptionParticipants.findADate.yes" count=evaluationBestOption.answers.yes}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if evaluationBestOption.answers.maybe}}
|
|
|
|
{{t "poll.evaluation.bestOptionParticipants.findADate.maybe" count=evaluationBestOption.answers.maybe}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if evaluationBestOption.answers.no}}
|
|
|
|
{{t "poll.evaluation.bestOptionParticipants.findADate.no" count=evaluationBestOption.answers.no}}
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
{{#if evaluationBestOption.answers.yes}}
|
|
|
|
{{t "poll.evaluation.bestOptionParticipants.makeAPoll.yes" count=evaluationBestOption.answers.yes}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if evaluationBestOption.answers.maybe}}
|
|
|
|
{{t "poll.evaluation.bestOptionParticipants.makeAPoll.maybe" count=evaluationBestOption.answers.maybe}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if evaluationBestOption.answers.no}}
|
|
|
|
{{t "poll.evaluation.bestOptionParticipants.makeAPoll.no" count=evaluationBestOption.answers.no}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|