maybe this is a bug,

when import the model via the follow:
from  projectName.appName.models import className
but not:
from appName.models import className
maybe a solution.
for more infomation , pls refer to:
http://groups.google.com/group/django-developers/browse_thread/thread/51ebb62cc40ff3f7



mathias wrote:
> 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to