Hi guys, I have a question, pls help me. I have a function like this:
def _list_answer(self):
return [
{ "value": 1, "label": _("Very satisfied")},
{"value": 2,"label": _("Satisfied")},
{"value": 3,"label": _("Normal") },
{"value": 4,"label": _("Dissatisfied")},
{"value": 5,"label": _("Very Dissatisfied")}
]
and i want render to qweb, my code:
But the label is not display, I can't make the label display to qweb, just input only. Where did I go wrong? Pls help me