Is it possible to show an One2many field in a kanban view in Odoo?
问题 I would like to know if it's possible to show a One2many field in a kanban view in Odoo (note that I'm not talking about Qweb in templates or reports, only about Qweb in kanban views). I have a model which has a One2many field named other_contact_ids . I want to show the name of each contact in the kanban view: <t t-foreach="record.other_contact_ids.raw_value" t-as="contact"> <p> <t t-esc="contact.name"/> </p> </t> I'm getting an error, because the t-as is storing only the ID of the objects