On Dec 19, 2:08 pm, "Cathy Young" <[EMAIL PROTECTED]> wrote:
> class Entry(models.Model):
>     guid = models.CharField(maxlength=250,primary_key=True)
>     permalink = models.URLField()
>     title = models.CharField(maxlength=300,default="Untitled entry")
>     author = models.CharField(maxlength=100)
>     content = models.TextField(null=True,blank=True)
>     timestamp = models.DateTimeField(default=datetime.datetime.now())
>     parent_entry = models.ForeignKey('self',null=True,blank=True)

I'm a relative Django newbie, but I think you need to use something
like

>> Entry.entrystatus_set.filter(entrystatus__user=3)

since the ForeignKey is on the EntryStatus model rather than the Entry
model.

Cheers!
--Chris Ryland, emsoftware.com


--~--~---------~--~----~------------~-------~--~----~
 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to