Spaces:
Sleeping
Sleeping
Create questions.py
Browse files- questions.py +30 -0
questions.py
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# questions.py
|
2 |
+
|
3 |
+
questions = [
|
4 |
+
{
|
5 |
+
"id": 1,
|
6 |
+
"question": "1.1 - Unidade do CEU:",
|
7 |
+
"type": "radio",
|
8 |
+
"options": [
|
9 |
+
"CEU Itapuã",
|
10 |
+
"CEU Recanto",
|
11 |
+
"CEU QNR 02",
|
12 |
+
"CEU QMN 28",
|
13 |
+
"CEU QNN 13",
|
14 |
+
"Outro"
|
15 |
+
],
|
16 |
+
"otherOption": True,
|
17 |
+
"section": "1. Informações Gerais",
|
18 |
+
"allowComment": False
|
19 |
+
},
|
20 |
+
# ... inclua todas as 14 perguntas aqui ...
|
21 |
+
{
|
22 |
+
"id": 14,
|
23 |
+
"question": "5.3 - Há algum outro comentário ou sugestão que gostaria de compartilhar?",
|
24 |
+
"type": "radio",
|
25 |
+
"options": ["Sim", "Não"],
|
26 |
+
"section": "5. Sugestões e Melhorias",
|
27 |
+
"allowComment": True,
|
28 |
+
"interpretation": "Um espaço aberto para o participante expressar livremente opiniões, sugestões e relatos além dos itens anteriores."
|
29 |
+
}
|
30 |
+
]
|