On Fri, Oct 10, 2008 at 3:19 PM, Alessandro <[EMAIL PROTECTED]>wrote:

> In a project I have
> class Scheda(models.Model):
>    referente = models.ForeignKey(User,related_name="schede",
> editable=False)
>
> and I can use:
> User.objects.distinct().filter(schede__isnull=False):
>
> in another I have
> class Notizia(models.Model):
>    edizione = models.ForeignKey(Edizione, related_name="notizie",
> default=ultima_edizione)
>
> and
> Edizione.objects.distinct().filter(schede__isnull=False).order_by('-id')[0]
>
> returns
>
> FieldError: Cannot resolve keyword 'notizie' into field. Choices are:
> id, nome, slug
>

You've got a typo in there somewhere, because there is no 'notizie' in the
query you posted, you've got 'schede' like above.  So I'm not sure exactly
what you tried nor exactly what error you got.  Cut and paste of code and
error messages is best to avoid confusion.  Also, posting complete models
instead of just snippets (put them out on dpaste.com and point to them if
they are non-trivial and thus will display poorly in email) may be better in
this case.  From what you posted so far I don't see why what (I'm guessing)
your query was isn't working.

Karen

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