Hi, In my models where I want to set the time when the instance is fist saved, I override the save() method of the model class like this:
def save(self): if not self.id: self.added = datetime.now() super(MyModel, self).save() but for models that are related to another one with a one-to-one relation (i.e. models that do not have an id field, but use the refered table's id), this does not work: def save(self): if not self.reftable_id: self.added = datetime.now() super(MyModel, self).save() where reftable_id is the field that references to the related model. Thanks for any help... --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---