I have created a model in one app and created a proxy model in another app. Now I want to give only view permission to a group of users for this proxy model in Django admin.
#core app
class Dress(models.Model):
name = models.CharField("Nome", max_length=80)
#enza app
class EnzaDress(Dress):
class Meta:
proxy = True
In permission gird of Django user group record page, I did not see any entry to give view permission for this proxy model(EnzaDress) in Django admin.
My Django version is 1.11.5