On Sep 11, 11:11 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> 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


Thanks for the reply.

I'm not using django very long, so i have to get familiar with the
whole stuff...

i thought there there is a nice little paramter like
'autopopulate_from_current_user = True' ;)

... but now i think i understand the whole thing a little better. In
this case, the view is responsible to serv the current user to the
model, so if i want to autopopulate the user in the admin, i have to
overwrite the adminviews, right?

this is one of the sources i read:
http://www.b-list.org/weblog/2006/nov/02/django-tips-auto-populated-fields/

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