mathias wrote: > 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. > You can construct a list of related Tickets from given Contents ([c.ticket for c in contents]) and then remove duplicates from it. But there is a better way with Django ORM with only one DB query:
tickets = Ticket.objects.filter(content__body__icontains='bla').distinct() --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---