{% set is_first_iter = True %}
{% for form_schema_row in form_schema %}
{% if form_schema_row["type"] == "radio" %}
{% for choice in form_schema_row['choices'] %}
{% endfor %}
{% elif form_schema_row["type"] == "text" %}
{% endif %}
{% set is_first_iter = False %}
{% endfor %}