classificad / questions.py
Pauloeocadia's picture
Create questions.py
d17773d verified
raw
history blame contribute delete
885 Bytes
# questions.py
questions = [
{
"id": 1,
"question": "1.1 - Unidade do CEU:",
"type": "radio",
"options": [
"CEU Itapuã",
"CEU Recanto",
"CEU QNR 02",
"CEU QMN 28",
"CEU QNN 13",
"Outro"
],
"otherOption": True,
"section": "1. Informações Gerais",
"allowComment": False
},
# ... inclua todas as 14 perguntas aqui ...
{
"id": 14,
"question": "5.3 - Há algum outro comentário ou sugestão que gostaria de compartilhar?",
"type": "radio",
"options": ["Sim", "Não"],
"section": "5. Sugestões e Melhorias",
"allowComment": True,
"interpretation": "Um espaço aberto para o participante expressar livremente opiniões, sugestões e relatos além dos itens anteriores."
}
]