{% for round in rounds %}{% if round.id != 'basic' %}
{% if round.description %}
{{ round.description }}
{% endif %}
{% for q in round.questions %}
{% if q.type == 'textarea' %}
{% elif q.type == 'select' %}
{% else %}
{% endif %}
{% endfor %}
{% if not loop.last %}
{% else %}
{% endif %}
{% endif %}{% endfor %}