I have a model like :
class Mymodel(models.model):
_name= mymodel
field_1 = fields.char()
field_2 = fields.char()
field_3 = fields.char()
And i have 2 groups say group1 and group2 . group1 users can only read field_1 and field_2
but can modify field_3 . group2 users can edit field_1 only , other fields only read permission .
How to achieve this.