{{if isGridViewColumn}}
{{each field.questions as question}}
{{question.topic}}
{{each question.options as option index}} {{/each}}
{{option.text}}
{{if option.type == "radio" || option.type == "checkbox" }} {{if option.custom}} {{else}} {{/if}} {{else if option.type == "text"}} {{else if option.type == "textarea"}} {{/if}}
{{/each}}
{{else}}
{{each field.questions as question}}
{{question.topic}}
{{each question.options as option index}} {{/each}}
{{if option.type == "radio" || option.type == "checkbox" }} {{if option.custom}} {{else}} {{/if}} {{else if option.type == "text"}} {{else if option.type == "textarea"}} {{/if}}
{{/each}}
{{/if}}