On Thu, 2008-09-11 at 22:16 +0200, Stephan Hoyer wrote: > Hi All > > i want to store the add and changetime an user to some models, therefor > i created a abstract class to inherit from: > > class DublinCore(models.Model): > inserted = models.DateTimeField(auto_now_add=True) > updated = models.DateTimeField(auto_now=True) > inserter = models.ForeignKey(User, related_name = 'inserter') > updater = models.ForeignKey(User, related_name = 'update') > > class Meta: > abstract = True > > > How can i get the user automaticaly inserted/updated. I searched the > web, but only get stuff of previous djangoversions (2 years ago) which > are quite complicated.
With no reference to what you found, it's difficult to know if that's the recommended way, but the way to do this two years ago is the same as today. Models and the ORM layer are quite separate from requests, responses and views and "the current user" only makes sense in the latter (it's very common to use models without having any concept of a current user, for example). So you'll either have to set the user manually in the view, or use something like threadlocals for storing it in the view so that the model's save method can pull it out. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---