views:

19

answers:

1

Hello.

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?

+1  A: 

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.

Andrew Sledge