I have implemented prototype inheritance..
class Module(models.Model):
_inherit = ['ir.model']
_name = 'test.ir.model'
what i am looking for is i don't want to write my own view.
i want to use parent view of ir.model with prototype inheritance.
is there any way to do it?