> > All what i want is to make the published field to appear for certain > user only in the admin interface > is there in way to do that with django pleasssssee >
So you want to allow a group of users to edit the DonorProfile, but only select users within that group may edit the published field? To the best of my knowledge this isn't possible with the stock Django admin application. See http://www.djangobook.com/en/beta/chapter18/ for details on customizing the admin application. That page notes that: ---- The admin is designed to be used by people who you, the developer, trust. This doesn't just mean "people who have been authenticated;" it means that Django assumes that your content editors can be trusted to do the right thing. This means that there's no "approval" process for editing content if you trust your users, nobody needs to approve of their edits. It also means that the permission system, while powerful, has no support for limiting access on a per-object basis. If you trust someone to edit their own stories, you trust them not to edit anyone else's without permission. ---- Nathan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---