in my module i want to enable base.employee_group to inherit private information page (allowed for Manager and Officer)
<record id="view_personal_information_for_employee" model="ir.ui.view">
<field name="name">View Personal Information For Employee</field>
<field name="model">hr.employee</field>
<field name="inherit_id" ref="hr.view_employee_form" />
<field name="arch" type="xml">
<xpath expr="//page[@name='personal_information']" position="attributes">
<attribute name="groups">base.group_user</attribute>
</xpath>
</field>
</record>
but it looks empty