{% 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 not forloop.counter|divisibleby:2 %}
{% else %}
{% endif %}
{{ question }}
{% if forloop.counter|divisibleby:2 or forloop.last %}