Re: about row level permissions

2006-07-24 Thread [EMAIL PROTECTED]
Hi, I'm the developer working on that branch. I've had some personal issues come up that haev delayed me from committing the latest code for row level permissions. Which is required to work with the wiki article. One thing to note, is that they don't do anything at this current point. You can c

Re: about row level permissions

2006-07-23 Thread mahakala
I got it. Thanks. --~--~-~--~~~---~--~~ 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 PROTECT

Re: about row level permissions

2006-07-23 Thread James Bennett
On 7/23/06, mahakala <[EMAIL PROTECTED]> wrote: > Would anybody kindly tell me what's wrong? Thanks. Probably it's a bug in the branch. The various side branches of Django are there to give people a place to develop new features without breaking the main trunk, and are provided not because they'

about row level permissions

2006-07-23 Thread mahakala
Hi, everybdoy I just download the row level permission branch, and try as the wiki said, add row_level_permissions to class Meta: class Poll(models.Model): question = models.CharField(maxlength=200) pub_date = models.DateTimeField('date published') class Admin: pass clas