Hi,
I want to have 2 different input fields, dependent if a user is in a group or not. The one if a user is in the group works but the on if the user is not not. I also tried <t groups="not myaddon.group_tag">
<t groups="myaddon.group_tag">
<field name="category_id"
widget="many2many_tags"
placeholder="Tags..."/>
</t>
<t groups="! myaddon.group_tag">
<field name="category_id"
widget="many2many_tags"
options="{'no_create': True}"
placeholder="Tags not..."/>
</t>