Wednesday, July 25, 2012

Re: Overriding save to create and save related entity



On Wed, Jul 25, 2012 at 12:34 PM, Sithembewena Lloyd Dube <zebra05@gmail.com> wrote:
Hi all,

I have the following code:

class Points(models.Model):
    .... blah blah

class TrainingSession(models.Model):
    confirmed = models.BooleanField()
    points = models.ForeignKey(Points, null=True, blank=True)
   
When a training session is saved, if confirmed is True I wish to create and save a points instance. How can I do so?

You can override the save_model method at the ModelAdmin


   

--
Regards,
Sithembewena Lloyd Dube

--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.



--
Nicolas Emiliani

Lo unico instantaneo en la vida es el cafe, y es bien feo.

--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment