On Tue, 2007-04-03 at 07:24 -0700, mh wrote:
> I have two models that (simplified) look like this;
>
> class List(models.Model):
> name =models.CharField(maxlength=128)
> class Admin:
> pass
>
> class Entry(models.Model):
> name = models.CharField(maxlength=128, core=True)
> list = models.ForeignKey(List, edit_inline=models.TABULAR)
> to = models.ForeignKey(List, null=True, blank=True,
> related_name='to')
>
> This doesn't seem to be working ('bool' object is not callable); any
> suggestions on how I could fix it?
I thought we fixed this a bit before 0.96 was released. Are you using
the latest release or some older code?
Regards,
Malcolm
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---