I'm have a page that accepts a get parameter to set the the field name I want to edit but can't make it to work with qweb syntax. An example of the qweb code is.
<div t-field="record.content"/>
I think I need something like :
<div t-field="record.#{field}"/>
or something like that.
I need to be able to set the content field dynamically that now is fixed in the example. Thanks in advance.!
EDIT: I think I must use t-field in order to be able to edit it in the website editor. That's why I can't use computed fields.