On 12/27/05, Emanuele <[EMAIL PROTECTED]> wrote: > I'd like to give read-only access to some objects in admin interface to > selected users. I know that django admin interface is CRUD and I can > give only create/update/delete permissions to users, but is there a way > to solve my problem (other than creating my templates and use generic > views I mean)?
Not so far as I know; Django's permissions structure only assigns 'add', 'change' and 'delete' permissions for model objects, and to do this without a lot of hacking in the admin app you'd need an additional 'view' permission. Generic views are probably your best bet. -- "May the forces of evil become confused on the way to your house." -- George Carlin