Odoo Tips : No labels are showing for the fields in the view

Jeevachaithanyan Sivanandan - Jan 21 - - Dev Community

If your form view XML includes fields but the labels are not displaying, and only the fields are visible, it's likely that you haven't enclosed the fields within a group. Please consider incorporating them as illustrated below.

<group>
 <field name="field1"/>
 <field name="field2"/>
</group>
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .