{% if forExport %}
{{ question.getQuestion()|raw }} |
||
{{ 'question_form_type'| trans({}, 'survey') }} : {{ question.getType()| trans({}, 'survey') }} | ||
{{ 'number_of_respondents'|trans({}, 'survey') }} : {{ nbRespondents }} | ||
{{ 'choice'|trans({}, 'survey') }} | {{ 'number_of_responses'|trans({}, 'survey') }} | {{ 'ratio'|trans({}, 'survey') }} (%) |
---|---|---|
{{ choice.getContent()|raw }} | {% if choicesCount[choiceId] is defined %} {{ choicesCount[choiceId] }} {% else %} 0 {% endif %} | {% if choicesRatio[choiceId] is defined %} {{ choicesRatio[choiceId] }} {% else %} 0 {% endif %} |
{{ 'choice'|trans({}, 'survey') }} | {{ 'number_of_responses'|trans({}, 'survey') }} | {{ 'ratio'|trans({}, 'survey') }} |
---|---|---|
{{ choice.getContent()|raw }} | {% if choicesCount[choiceId] is defined %} {{ choicesCount[choiceId] }} {% if choice.isOther() and choicesCount[choiceId] > 0 %} {% endif %} {% else %} 0 {% endif %} | {% if choicesRatio[choiceId] is defined %} {{ choicesRatio[choiceId] }} % {% else %} 0 % {% endif %} |