Re: per object permissions in admin using newforms-admin

2007-09-12 Thread Yuri Baburov
Yes, you're right. Renamed it to FieldLevelPermissionAdmin by the way. 2007/9/12, andybak <[EMAIL PROTECTED]>: > > I think that must be Yuri's own work actually. Yuri? > > On Sep 12, 1:42 pm, RKnobelspies <[EMAIL PROTECTED]> wrote: > > You might also want to check out this snippet: > > > > RowLev

Re: per object permissions in admin using newforms-admin

2007-09-12 Thread andybak
I think that must be Yuri's own work actually. Yuri? On Sep 12, 1:42 pm, RKnobelspies <[EMAIL PROTECTED]> wrote: > You might also want to check out this snippet: > > RowLevelPermissionsAdminhttp://www.djangosnippets.org/snippets/414/ --~--~-~--~~~---~--~~ You rec

Re: per object permissions in admin using newforms-admin

2007-09-12 Thread RKnobelspies
You might also want to check out this snippet: RowLevelPermissionsAdmin http://www.djangosnippets.org/snippets/414/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group,

Re: per object permissions in admin using newforms-admin

2007-09-12 Thread andybak
Off list Yuri pointed me to a patch that by the look of it does exactly what I need: http://code.djangoproject.com/ticket/3987 Thanks Yuri! On 11 Sep, 16:02, "Yuri Baburov" <[EMAIL PROTECTED]> wrote: > 2007/9/11, andybak <[EMAIL PROTECTED]>: > > > Am I right in thinking that the current recomme

Re: per object permissions in admin using newforms-admin

2007-09-11 Thread Yuri Baburov
2007/9/11, andybak <[EMAIL PROTECTED]>: > > Am I right in thinking that the current recommended approach to > restricting admin access to certain objects (or rows) on a user by > user basis is to use the admin hooks in newforms-admin? I've started > using the queryset hook to remove items from the

per object permissions in admin using newforms-admin

2007-09-11 Thread andybak
Am I right in thinking that the current recommended approach to restricting admin access to certain objects (or rows) on a user by user basis is to use the admin hooks in newforms-admin? I've started using the queryset hook to remove items from the changelist page. However I am wondering how the