Re: Signals and foreign key

2011-01-16 Thread mrmclovin
Solved. Look at http://stackoverflow.com/questions/4704924/django-signal-callback-function-missing-foreign-on-model -- 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 unsubscri

Signals and foreign key

2011-01-15 Thread mrmclovin
Hey, Im trying to get the signal pre_save to work on my model but there seems to be some problem with a foreign key or something. My model is like this: class BlogEntry(models.Model): headline = models.CharField(max_length=100) content = models.CharField(max_length=2000) written_by = m