Hi, 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)?
BTW, by "read-only access" I mean the user can see list/detail admin pages for certain objects without having the possibility to modify/delete it. Thanks in advance, Emanuele

