{% comment %} Two columns (4 / 8). The first question is rendered in the first column, all others in the second column. {% endcomment %} {% for questiongroup in questiongroups %}
{% if config.label %}
{{ config.label }}
{% endif %} {% for question in questiongroup %} {% if forloop.counter == 1 %}
{{ question }}
{% else %} {{ question }} {% if forloop.last %}
{% endif %} {% endif %} {% endfor %}
{% endfor %}