I have a Many2many field and would like to make a new line after each item. When trying with other separators like : ',', '/', ... that's work. The problem was only with '\n'. I even tried with ' '
Here is my code:
<span t-esc="'\n'.join(map(lambda x: x.name, move.myfield_ids))"/>
Any help, please ? What's wrong?
Thanks.