Reputation: 42603
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?
Upvotes: 0
Views: 410
Reputation: 10351
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.
Upvotes: 1