{% if question.getType() == 'multiple_choice_multiple' %} {% set choiceType = "checkbox" %} {% else %} {% set choiceType = "radio" %} {% endif %}

{{ question.getQuestion()|raw }}

{% if choices|length == 0 %} {% else %} {% if horizontal %} {% set otherChoice = '' %}
{% for choice in choices %} {% if not choice.isOther() %} {% endif %} {% endfor %} {% for choice in choices %} {% if choice.isOther() %} {% set otherChoice = choice %} {% else %} {% set choiceContent = choice.getContent() %} {% endif %} {% endfor %} {% if otherChoice is not empty %} {% endif %}
{% else %} {% for choice in choices %} {% set choiceContent = choice.getContent() %}
{% if choice.isOther() %}
{% endif %}
{% endfor %} {% endif %} {% endif %} {% if question.isCommentAllowed() %}
{% endif %}