Django administration view automatically generates permissions for all modules and tables – admin, auth, contenttypes etc. Is it possible to remove this permissions from ‘Available user permissions’ so i can see only permissions that i think are relevant?
Django administration view automatically generates permissions for all modules and tables – admin, auth,
Share
Not in an elegant manner. You would need to either override the template or go mucking in the admin code (django philosophy: “the admin is not your app”).
It’s best to create your own interface.