Hi, Here's my problem: I have two models: Ticket and Content, a ticket can have several content, so the ticket object contains the key to a ticket. So I have a OneToMany relationship between the two.
I have a search page to search for tickets, what I want to do is retrieve all the tickets that have one content that matches the search. For example, I want to be able to get all the tickets which have at least one content with the string "bla". In my view I can retrieve all the tickets: tickets = Ticket.objects.all() I can also retrieve the content that matches my search: contents = Content.object.filter(body__icontains='bla') But I can't figure out how to retrieve a QuerySet with all the tickets from the contents QuerySet. I first thought of using FOO_set.all() but I can't use it on a QuerySet but only on one instance. Any idea? Cheers, Mathias --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---