I just installed the latest Row Level Permissions branch.  And while
it does let me specify permissions on objects, if I set "show_all_rows
= False" the user still sees the objects he does not have permissions
for.  He can't edit them (because then he gets permission denied

My inner classes look like this:

    class Admin:
                list_display=('organization','start_date',"end_date",)
                list_filter=('start_date','end_date',)
                ordering=('organization',)
                search_fields=('organization',)
                show_all_rows = False
                grant_change_row_level_perm=True
                grant_delete_row_level_perm=True
                
    class Meta:
        row_level_permissions=True

any ideas what is wrong?
-- 
Mike Hostetler
http://mike.hostetlerhome.com/

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to