> Whoa,
> You can just overwrite save in the models and/or the form and get the person
> who created the object. If you want to limit access to these models it gets
> more complicated as the other users told you, but to get the original
> creator just:
>
> class Article(models.Model):
>     ....
>     owner = models.ForeignKey(User, null=True, blank=True, editable=False)
>
>     def save(self):
>         if not self.owner:
>             self.owner = request.user

And how do you get access to a request instance here?

>         super(Article, self).save()

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