{{#if pasteOrUpload}}
{{input-yaml
showUpload=false
showDownload=false
canChangeName=false
value=pastedAnswers
autoResize=true
}}
{{top-errors errors=yamlErrors}}
{{else}}
{{#each answerSections as |section index|}}
{{#if section.title}}
{{section.title}}
{{else if (gt index 0)}}
{{/if}}
{{#each section.data as |group|}}
{{#each group as |question|}}
{{input-answer-row
classNames="col span-6"
question=question
answer=question.answer
namespaceId=namespaceId
}}
{{/each}}
{{/each}}
{{else}}
{{t "inputAnswers.noConfig"}}
{{/each}}
{{/if}}