Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コンマで区切られた one2many フィールド値を 1 つずつ出力しようとしています。
<div class="col-xs-3"> <strong>Attendees:</strong> <p t-esc="o.matp.empname"/> </div>
どうすればこれを達成でき、コンマで区切られた値を出力したいですか?
このコードを試してください:
<t t-foreach='o.matp' t-as='value'> <t t-esc="value.empname"/>, </t>