On Wed, Jul 25, 2012 at 12:34 PM, Sithembewena Lloyd Dube <[email protected] > 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 https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_model > > -- > 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 [email protected]. > 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. > -- 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 [email protected]. 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.

